Little-Known Galaxy Wiki lkg_en https://lkg.wiki.gg/wiki/Little-Known_Galaxy_Wiki MediaWiki 1.39.4 first-letter Media Special Talk User User talk Little-Known Galaxy Wiki Little-Known Galaxy Wiki talk File File talk MediaWiki MediaWiki talk Template Template talk Help Help talk Category Category talk Widget Widget talk Module Module talk Gadget Gadget talk Gadget definition Gadget definition talk Data Data talk Main Page 0 1 1 2021-11-29T15:17:56Z MediaWiki default 0 wikitext text/x-wiki <strong>MediaWiki has been installed.</strong> Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software. == Getting started == * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list] * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ] * [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list] * [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language] * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki] 5702e4d5fd9173246331a889294caf01a3ad3706 Template:Extension DPL 10 2 2 2022-12-18T00:55:51Z DynamicPageList3 extension 44285 Autogenerated DPL's necessary template for content inclusion wikitext text/x-wiki <noinclude>This page was automatically created. It serves as an anchor page for all '''[[Special:WhatLinksHere/Template:Extension_DPL|invocations]]''' of [https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:DynamicPageList3 Extension:DynamicPageList3].</noinclude> 087ffd4625ae7b1fea3436ec3f929e82ee739d29 MediaWiki:Copyright 8 3 3 2024-05-28T14:58:18Z Pcj 1919 Created page with "<div><img src=https://commons.wiki.gg/images/f/ff/CC-BY-SA.svg /> Page content is under the <a href=https://creativecommons.org/licenses/by-sa/4.0>Creative Commons Attribution-ShareAlike 4.0 License</a> unless otherwise noted.</div>" wikitext text/x-wiki <div><img src=https://commons.wiki.gg/images/f/ff/CC-BY-SA.svg /> Page content is under the <a href=https://creativecommons.org/licenses/by-sa/4.0>Creative Commons Attribution-ShareAlike 4.0 License</a> unless otherwise noted.</div> 7290744eba73e7f9987d32ef26b3490f5bea3537 User:RheingoldRiver/common.css 2 4 4 2024-05-28T15:01:28Z RheingoldRiver 2743 Adding default set of pages css text/css @font-face { font-family: "FontAwesome"; font-weight: normal; font-style: normal; src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.7.0"); src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg"); } #title-copy-outer { display:inline-block; display:inline-flex; flex-direction:column; justify-content:space-between; height:1em; margin-left:0.25em; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } #title-copy-content, #title-copy-all { width:0.6em; flex-basis:50%; cursor:pointer; } #title-copy-content::after, #title-copy-all::after { content:'\f0c5'; font-family: fontAwesome; font-size:50%; position:relative; top:0; display:block; line-height:1; /* to override cases where it's changed in the local wiki css */ } #firstHeading { display:flex; align-items:self-start; } #firstHeading .editlink { align-self:center; } #title-copy-outer + .editlink { margin-left:0.25em; } /* edit button */ .editlink::before { content: "["; display:inline-block; margin-right:0.5em; color:var(--body-text-color); } .editlink::after { content: "]"; display:inline-block; margin-left:0.5em; color:var(--body-text-color); } .editlink { font-size:small; margin-left:1em; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } 8b67e8b24e5a64120c1abd173c0a4a8419b54136 User:RheingoldRiver/common.js 2 5 5 2024-05-28T15:01:30Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript // <nowiki> /* add edit buttons for recent changes, categories, contributions, and search */ $(function() { function addTagMarker(obj) { var classes = $(obj).attr('class'); var re = /.*mw-tag-marker-([^\s]*)/g; var thisClass = re.exec(classes)[1]; if (thisClass) { var sep = (window.location.href.indexOf("?") === -1) ? "?" : "&"; $('<a>') .addClass('tag-filter-link') .attr({ href: window.location.href + sep + 'tagfilter=' + thisClass, title: 'Filter to this tag' }) .css({'margin-left':'.5em','background-color':'#0FE40F'}) .text('...') .insertAfter(obj); } } $('.mw-tag-marker').each(function(){ addTagMarker(this); }); function addEditlink(elem, target) { addEditlinkFromUrl(elem, mw.util.getUrl(target, { action : 'edit' })); } function addEditlinkFromUrl(elem, url) { $('<a>').addClass('custom-editlink').attr({ href : url, title : 'Edit this page' }).text('✎').insertAfter(elem); } function addDeletelink(elem, target) { addDeletelinkFromUrl(elem, mw.util.getUrl(target, { action : 'delete' })); } function addDeletelinkFromUrl(elem, url) { $('<a>').addClass('custom-deletelink').attr({ href : url, title : 'Delete this page' }).text('X').insertAfter(elem); } function fixProfileLink(elem, title) { if (! title.match(/^User:/)) return; var oldlink = $(elem).attr('href'); var newlink = oldlink + '?profile=no'; $(elem).attr('href', newlink); } mw.loader.using('mediawiki.util').then(function() { $('.mw-changeslist').find('.mw-title').each(function() { var title_obj = $(this).find('.mw-changeslist-title'); if (title_obj) { var title = title_obj.attr('title'); addEditlink(this, title); fixProfileLink(title_obj, title); } }); $('.mw-category-generated').find('.mw-content-ltr ul li a').each(function() { var title = $(this).text(); if (title) { title = $(this).parent().hasClass("CategoryTreeItem") ? "Category:" + title : title; addDeletelink(this, title); addEditlink(this, title); } }); $('ul.mw-contributions-list').find('a.mw-contributions-title').each(function() { var title = $(this).attr('title'); fixProfileLink(this, title); addEditlink(this, title); }); $('.searchresults').find('.mw-search-result-heading').each(function() { var title_obj = $(this).find('a'); if (title_obj) { var title = title_obj.attr('title'); addEditlink(title_obj, title); fixProfileLink(title_obj, title); } }); $('#pagehistory').find('.mw-changeslist-date').each(function() { addEditlinkFromUrl(this, $(this).attr('href') + '&action=edit'); }); }); }); /* silly workaround to add a page values hotkey, alt shift 1 */ $(function () { mw.util.addPortletLink('p-cactions', mw.config.get('wgServer') + mw.config.get('wgArticlePath').replace("$1", encodeURI(mw.config.get('wgPageName')) + '?action=pagevalues'), 'Page Values 2', 'pv2','page values','1','#t-cargopagevalueslink'); }); /* copy category members */ $(function() { wgNamespace = mw.config.get('wgCanonicalNamespace'); if (wgNamespace != 'Category') return; $(mw.util.addPortletLink('p-cactions', 'javascript:;', '!Copy Members', 'ca-copy-cat-members', 'Copy Category Members', null, '#ca-move-to-user')).click(function() { a = new mw.Api(); a.get({ action : 'query', list : 'categorymembers', cmtitle : mw.config.get('wgPageName'), cmlimit : 'max' }).then(function(data) { tbl = []; for (page in data.query.categorymembers) { tbl.push(data.query.categorymembers[page].title); } var str = tbl.join('\n'); var el = document.createElement('textarea'); el.value = str; el.setAttribute('readonly', ''); $(el).insertAfter('#contentSub'); el.select(); }); }); }); /* copy titles from search, recentchanges, contribs */ $(function() { var selectors = [ { pattern: 'Special:Search', selector: '.unified-search__result__title', attr: 'data-title' }, { pattern: 'Special:Contributions/', selector: '.mw-contributions-title', attr: 'title' }, { pattern: 'Special:RecentChanges', selector: '.mw-changeslist-line-inner .mw-title a', attr: 'title' }, ] var pageName = mw.config.get('wgPageName'); for (i in selectors) { if (!pageName.includes(selectors[i].pattern)) continue; $(mw.util.addPortletLink('p-cactions', 'javascript:;', '!Copy Titles', 'ca-copy-search-results', 'Copy Titles', null, '#ca-move-to-user')).click(function() { var pageList = []; $(selectors[i].selector).each(function() { pageList.push($(this).attr(selectors[i].attr)); }); var str = pageList.join('\n'); displayOutputText(str, true); }); // don't let i keep incrementing return; } }); /* press alt shift E to start creating a page that doesn't exist yet from search */ $(function() { if (mw.config.get('wgPageName') !== 'Special:Search') return; $(mw.util.addPortletLink('p-cactions', 'javascript:;', '!Create Page', 'ca-create-page', 'Create Page', 'e')).click(function() { $('.new').each(function() {this.click();}); }); }); /* See totals at the top of WLH pages */ $(function() { if (mw.config.get('wgCanonicalSpecialPageName') !== 'Whatlinkshere') return; var title = $('#mw-whatlinkshere-target').val(); var ns = $('#namespace').val(); title = title ? title : mw.config.get('wgTitle').replace('WhatLinksHere/', ''); var el = document.createElement('div'); var display = [ 'Total links: ', 'Total transclusions: ', 'Redirects and links to redirects are NOT included!' ]; $(el).html(display.join('<br>')).insertAfter($('#firstHeading')); return new mw.Api().get({ action : 'query', prop : 'linkshere|transcludedin', titles : title, lhlimit : 'max', tilimit : 'max', lhnamespace : ns == '' ? '*' : ns, tinamespace : ns == '' ? '*' : ns, }).then(function(data) { console.log(data); var lh, ti; for (p in data.query.pages) { var page = data.query.pages[p]; lh = page.linkshere ? page.linkshere.length : 0; ti = page.transcludedin ? page.transcludedin.length : 0; } display = [ 'Total links: ' + lh, 'Total transclusions: ' + ti, 'Redirects and links to redirects are NOT included!' ]; $(el).html(display.join('<br>')); }); }); $(function() { $('.cargoReplacementTableInfo').each(function() { var parent = $(this).closest('li').detach(); $('#mw-content-text > ul:first-of-type').prepend(parent); }); }); // show table name by each cargo table value set $(function() { var currTable = ''; $('.action-pagevalues h2 span, .action-pagevalues #mw-content-text > .wikitable').each(function() { if ($(this).hasClass('wikitable')) { $(this).attr('style', '--table-name:"' + currTable + '"'); $(this).addClass('cargo-values'); return } currTable = $(this).text().match(/^"(.+?)".*/)[1]; }); }); $(function() { if (mw.config.get('wgPageName') != 'MediaWiki:Gadgets-definition') return; if (window.location.href.indexOf("history") > 0) return; var urlPrefix = mw.config.get('wgServer') + '/MediaWiki:Gadget-'; function replaceWithLink(str) { var link = document.createElement('a'); $(link).attr('href', mw.html.escape(urlPrefix + str)); $(link).html(mw.html.escape(str)); return link.outerHTML; } $('#mw-content-text li').each(function() { var html = $(this).html(); var htmlParts = html.split('|'); for (i in htmlParts) { if (htmlParts[i].endsWith('css') || htmlParts[i].endsWith('js')) { htmlParts[i] = replaceWithLink(htmlParts[i]); } } var text = htmlParts.join('|'); var firstPart = text.match(/^([^\|\[]*)/)[0]; if (firstPart) text = text.replace(firstPart, replaceWithLink(firstPart)); $(this).html(text); }); $('#mw-content-text h2 .mw-headline').each(function() { $(this).html(replaceWithLink('section-' + $(this).html())); }); }); /* copy title */ $(function() { var el = document.createElement('div') $(el).attr('id', 'title-copy-outer').html('<div id="title-copy-content" title="Copy Only Title (No Namespace)"></div><div id="title-copy-all" title="Copy Full Title (Incl Namespace)"></div>'); $('#firstHeading').wrapInner('<div id="first-heading-text"></div>'); $(el).insertAfter(document.getElementById('first-heading-text')); function doCopy(e, text) { navigator.clipboard.writeText(text); $(e).css('color','green'); setTimeout(function() { $(e).css('color',''); }, 2000); } $('#title-copy-content').click(function() { doCopy('#title-copy-content', mw.config.get('wgTitle') .replace(/(WhatLinksHere|MovePage)\/(.+?:)?/,'') ); }); $('#title-copy-all').click(function() { doCopy('#title-copy-all', mw.config.get('wgPageName') .replace(/Special:(?:WhatLinksHere|MovePage)\//,'') .replace(/_/g, " ") ); }); }); $(function() { if (mw.config.get('wgCanonicalNamespace') != 'Module') return; $('.s1, .s2').each(function() { var html = $(this).html(); var quote = html[0]; var quoteRE = new RegExp('^' + quote + '|' + quote + '$', 'g'); var name = html.replace(quoteRE,""); if (name.startsWith("Module:")) { var target = name.replace(/ /g,'%20'); var url = mw.config.get('wgServer') + '/' + target; var str = quote + mw.html.element('a', {href: url}, name) + quote; $(this).html(str); } }); }); // </nowiki> f4d53ad7a92081d3050f1ac079253a7588e7dfae Little-Known Galaxy Wiki:Copyrights 4 6 6 2024-05-28T15:01:31Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <!--''[[GAME]]'' content and materials are the intellectual property of their respective owners. -->Content that you make available on {{SITENAME}} is licensed by you to us under our [https://wiki.gg/termsofservice Terms of Service]. Do not make content available on {{SITENAME}} where you do not have the necessary rights to grant this license. All textual and graphical content on {{SITENAME}} that we may lawfully license is licensed to you under the [https://creativecommons.org/licenses/by-sa/4.0 Creative Commons Attribution-ShareAlike 4.0] license. [[Category:Legal notices]] 2d85ebced55fca66c356a7395506ad1b5caeeb6d 7 6 2024-05-28T15:01:32Z RheingoldRiver 2743 Protected "[[Little-Known Galaxy Wiki:Copyrights]]" ([Edit=Allow only administrators] (indefinite)) wikitext text/x-wiki <!--''[[GAME]]'' content and materials are the intellectual property of their respective owners. -->Content that you make available on {{SITENAME}} is licensed by you to us under our [https://wiki.gg/termsofservice Terms of Service]. Do not make content available on {{SITENAME}} where you do not have the necessary rights to grant this license. All textual and graphical content on {{SITENAME}} that we may lawfully license is licensed to you under the [https://creativecommons.org/licenses/by-sa/4.0 Creative Commons Attribution-ShareAlike 4.0] license. [[Category:Legal notices]] 2d85ebced55fca66c356a7395506ad1b5caeeb6d File:Site-favicon.ico 6 7 8 2024-05-28T15:01:33Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Wiki skin images]] f0235f85e2414431e046ae251792bf050daef5f7 MediaWiki:Apioutput.css 8 8 9 2024-05-28T15:01:35Z RheingoldRiver 2743 Adding default set of pages css text/css /* All CSS here is applied on api.php pages */ @media (prefers-color-scheme: dark) { body { background-color:#20211f; border-color: #7b7261; color: #f6ecdb; } h1, h2, h3, h4, h5, h6 { color: rgb(234, 224, 207); border-color: rgb(83, 84, 81); } .mw-highlight .s2 { color: rgb(206, 99, 91); } a { color: rgb(133, 180, 221); } a:visited { color: rgb(141, 127, 218); } pre, code, .mw-code { background-color: rgb(34, 35, 33); color: rgb(234, 224, 207); border-color: rgb(63, 64, 62); } } c95cf2c22c12d821f22b745f2aa78d4f6f711500 MediaWiki:Common.css 8 9 10 2024-05-28T15:01:36Z RheingoldRiver 2743 Adding default set of pages css text/css /* CSS placed here will be applied to all skins */ :root, .view-light { --wiki-body-background-image: none; --wiki-body-background-color: #f6f6f6; --wiki-body-background-color--rgb: 246,246,246; --wiki-body-dynamic-color: #000000; --wiki-body-dynamic-color--rgb: 0,0,0; --wiki-body-dynamic-color--inverted: #ffffff; --wiki-body-dynamic-color--inverted--rgb: 255,255,255; --wiki-body-dynamic-color--secondary: #333333; --wiki-body-dynamic-color--secondary--rgb: 51,51,51; --wiki-body-dynamic-color--secondary--inverted: #dddddd; --wiki-body-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #ffffff; --wiki-content-background-color--rgb: 255, 255, 255; --wiki-content-background-opacity: 1; --wiki-content-background-color--secondary: #fbfbfb; --wiki-content-background-color--secondary--rgb: 251, 251, 251; --wiki-content-border-color: #a7d7f9; --wiki-content-border-color--rgb: 167, 215, 249; --wiki-content-text-color: #111111; --wiki-content-text-color--rgb: 17, 17, 17; --wiki-content-link-color: #0645ad; --wiki-content-link-color--rgb: 6, 69, 173; --wiki-content-link-label-color: #ffffff; --wiki-content-link-label-color--rgb: 255,255,255; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #ba0000; --wiki-content-redlink-color--rgb: 186,0,0; --wiki-content-text-mix-color: #8a8b8b; --wiki-content-text-mix-color--rgb: 138,139,139; --wiki-content-text-mix-color-95: #eef0f0; --wiki-content-text-mix-color-95--rgb: 238,240,240; --wiki-content-dynamic-color: #000000; --wiki-content-dynamic-color--rgb: 0,0,0; --wiki-content-dynamic-color--inverted: #ffffff; --wiki-content-dynamic-color--inverted--rgb: 255,255,255; --wiki-content-dynamic-color--secondary: #333333; --wiki-content-dynamic-color--secondary--rgb: 51,51,51; --wiki-content-dynamic-color--secondary--inverted: #dddddd; --wiki-content-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #3366cc; --wiki-accent-color--rgb: 51, 102, 204; --wiki-accent-color--hover: #447ff5; --wiki-accent-color--hover--rgb: 68, 127, 245; --wiki-accent-label-color: #ffffff; --wiki-accent-label-color--rgb: 255, 255, 255; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: 0.0; --wiki-sidebar-border-color: var(--wiki-body-background-color); --wiki-sidebar-border-color--rgb: var(--wiki-body-background-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: #e8f2f8; --wiki-navigation-background-color--secondary--rgb: 232, 242, 248; --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #bf0017; --wiki-alert-color--rgb: 191,0,23; --wiki-alert-label-color: #ffffff; --wiki-alert-label-color--rgb: 255, 255, 255; --wiki-warning-color: #cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #ffffff; --wiki-success-label-color--rgb: 255, 255, 255; --wiki-icon-general-filter: ; --wiki-icon-to-link-filter: invert(20%) sepia(93%) saturate(2141%) hue-rotate(210deg) brightness(83%) contrast(103%); } .view-dark { --wiki-body-background-image: none; --wiki-body-background-color: #171717; --wiki-body-background-color--rgb: 23, 23, 23; --wiki-body-dynamic-color: #ffffff; --wiki-body-dynamic-color--rgb: 255,255,255; --wiki-body-dynamic-color--inverted: #000000; --wiki-body-dynamic-color--inverted--rgb: 0,0,0; --wiki-body-dynamic-color--secondary: #dddddd; --wiki-body-dynamic-color--secondary--rgb: 221,221,221; --wiki-body-dynamic-color--secondary--inverted: #333333; --wiki-body-dynamic-color--secondary--inverted--rgb: 51,51,51; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #202020; --wiki-content-background-color--rgb: 32,32,32; --wiki-content-background-opacity: 1.0; --wiki-content-background-color--secondary: #2b2b2b; --wiki-content-background-color--secondary--rgb: 43,43,43; --wiki-content-border-color: #991A51; --wiki-content-border-color--rgb: 153,26,81; --wiki-content-text-color: #ededed; --wiki-content-text-color--rgb: 237,237,237; --wiki-content-link-color: #6d8afb; --wiki-content-link-color--rgb: 109,138,251; --wiki-content-link-label-color: #000; --wiki-content-link-label-color--rgb: 0,0,0; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #FC3B2C; --wiki-content-redlink-color--rgb: 252,59,44; --wiki-content-text-mix-color: #868686; --wiki-content-text-mix-color--rgb: 134,134,134; --wiki-content-text-mix-color-95: #2a2a2a; --wiki-content-text-mix-color-95--rgb: 42,42,42; --wiki-content-dynamic-color: #ffffff; --wiki-content-dynamic-color--rgb: 255, 255, 255; --wiki-content-dynamic-color--inverted: #000000; --wiki-content-dynamic-color--inverted--rgb: 0, 0, 0; --wiki-content-dynamic-color--secondary: #dddddd; --wiki-content-dynamic-color--secondary--rgb: 221, 221, 221; --wiki-content-dynamic-color--secondary--inverted: #333333; --wiki-content-dynamic-color--secondary--inverted--rgb: 51, 51, 51; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #ff1980; --wiki-accent-color--rgb: 255,25,128; --wiki-accent-color--hover: #D82073; --wiki-accent-color--hover--rgb: 216,32,115; --wiki-accent-label-color: #000; --wiki-accent-label-color--rgb: 0,0,0; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: var(--wiki-content-background-opacity); --wiki-sidebar-border-color: var(--wiki-content-border-color); --wiki-sidebar-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: var(--wiki-content-background-color--secondary); --wiki-navigation-background-color--secondary--rgb: var(--wiki-content-background-color--secondary--rgb); --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #ce0018; --wiki-alert-color--rgb: 206,0,24; --wiki-alert-label-color: #000000; --wiki-alert-label-color--rgb: 0,0,0; --wiki-warning-color:#cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #000000; --wiki-success-label-color--rgb: 0,0,0; --wiki-icon-general-filter: invert(100%); --wiki-icon-to-link-filter: invert(60%) sepia(70%) saturate(3715%) hue-rotate(206deg) brightness(101%) contrast(97%); } /***************************** * PortableInfoboxes * ******************************/ :root { --pi-background: var(--wiki-content-background-color); --pi-secondary-background: var(--wiki-accent-color); --pi-secondary-background--rgb: var(--wiki-accent-color--rgb); --pi-secondary-background-label: var(--wiki-accent-label-color); --pi-border-color: rgba(var(--pi-secondary-background--rgb),0.5); } .portable-infobox .pi-title, .portable-infobox .pi-header { text-align:center; font-size:1.5em; background:rgba(var(--pi-secondary-background--rgb), 0.75); color:var(--pi-secondary-background-label); } .portable-infobox .pi-data { background:rgba(var(--pi-secondary-background--rgb), 0.18); } .portable-infobox .pi-image { padding: 8px; } .pi-image-thumbnail { max-width:100%; } .pi-section-navigation .pi-section-tab.pi-section-active, .pi-section-navigation .pi-section-tab.current, .pi-media-collection .pi-tab-link.current { background: var(--pi-secondary-background); color: var(--pi-secondary-background-label); } /* overqualify these to overwrite normal content heading styles */ .mw-body .portable-infobox h2, .mw-body .portable-infobox h3 { border-bottom: 0; font-family: inherit; font-weight: 700; margin: 0; } /***************************** * End PortableInfoboxes * ******************************/ /********************************************************************************************************************* * Semantically-correct horizontal lists (for Module:Navbox, and they're more machine-readable than {{*}}-formatting) * **********************************************************************************************************************/ .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } /* Display list items inline */ .hlist dd, .hlist dt, .hlist li { /* * don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again * We also want to reset margin-right in Minerva */ margin: 0; display: inline; } /* Display requested top-level lists inline */ .hlist.inline, .hlist.inline dl, .hlist.inline ol, .hlist.inline ul, /* Display nested lists inline */ .hlist dl dl, .hlist dl ol, .hlist dl ul, .hlist ol dl, .hlist ol ol, .hlist ol ul, .hlist ul dl, .hlist ul ol, .hlist ul ul { display: inline; } /* Hide empty list items */ .hlist .mw-empty-li { display: none; } /* TODO: :not() can maybe be used here to remove the later rule. naive test * seems to work. more testing needed. like so: */ .hlist dt:not(:last-child)::after { content: ": "; } .hlist dd:not(:last-child)::after, .hlist li:not(:last-child)::after { content: " · "; font-weight: bold; } /* Add parentheses around nested lists */ .hlist dd dd:first-child::before, .hlist dd dt:first-child::before, .hlist dd li:first-child::before, .hlist dt dd:first-child::before, .hlist dt dt:first-child::before, .hlist dt li:first-child::before, .hlist li dd:first-child::before, .hlist li dt:first-child::before, .hlist li li:first-child::before { content: " ("; font-weight: normal; } .hlist dd dd:last-child::after, .hlist dd dt:last-child::after, .hlist dd li:last-child::after, .hlist dt dd:last-child::after, .hlist dt dt:last-child::after, .hlist dt li:last-child::after, .hlist li dd:last-child::after, .hlist li dt:last-child::after, .hlist li li:last-child::after { content: ")"; font-weight: normal; } /* Put ordinals in front of ordered list items */ .hlist ol { counter-reset: listitem; } .hlist ol > li { counter-increment: listitem; } .hlist ol > li::before { content: " " counter(listitem) "\a0"; } .hlist dd ol > li:first-child::before, .hlist dt ol > li:first-child::before, .hlist li ol > li:first-child::before { content: " (" counter(listitem) "\a0"; } /******************************************** * End semantically-correct horizontal lists * *********************************************/ /********************************************************** * Template:Navbox (needs semantic horizontal lists above) * ***********************************************************/ .navbox { clear: both; margin: 1em 0; padding: 3px; font-size: 90%; width: 100%; border: 1px solid var(--wiki-content-border-color); box-sizing: border-box; } .navbox-inner, .navbox-subgroup { border-spacing: 0; width: 100%; } /* Reduce spacing between adjacent navboxes */ .navbox + .navbox { margin-top: -1px; } /* Spacing between rows */ .navbox-spacer { height: 2px; } /* Title bars and labels */ .navbox-title { font-weight: bold; font-size: 115%; padding: 0.25em 0.6em; line-height: 1.5em; color: var(--wiki-accent-label-color); background: var(--wiki-accent-color); } .navbox-title, .navbox-abovebelow { padding-left: 1em; padding-right: 1em; text-align: center; } .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: rgba(var(--wiki-accent-color--rgb), 0.18); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .navbox .navbox-title a, .navbox .navbox-title a:visited, .navbox .navbox-title a.external, .navbox .navbox-title a.external:visited { color: var(--wiki-accent-link-color); } .navbox-title .mw-collapsible-toggle { font-weight: normal; text-align: right; } .navbox-title-text { font-size: 105%; } /* Navbox-related links */ .navbox-title .navbar { float: left; margin-right: 0.5em; } .navbox-title .navbar a.external::after { content: unset; } /* Groups */ .navbox-group { font-weight: bold; padding: 0 0.5em; white-space: nowrap; text-align: center; } /* Zebra colouring for rows */ .navbox-even { background: #fff1; } /* Subgroups: equal group labels between different child navboxes */ .navbox-subgroup > tbody > tr { display: flex; } .navbox-subgroup .navbox-title { width: 100%; } .navbox-subgroup .navbox-group { display: flex; align-items: center; justify-content: center; flex-basis: 11em; flex-grow: 1; flex-shrink: 0; white-space: normal; } /* Lists */ .navbox-list { width: 100%; } /* Mobile adjustments */ @media screen and (max-width: 1280px) { .mw-body .navbox-inner table { display: table; } } @media screen and (max-width: 720px) { .mw-body .navbox { display: none; } } /********************** * End Template:Navbox * ***********************/ /******************* * Main page layout * ********************/ #mp-box-welcome {grid-area: welcome;} #mp-box-about {grid-area: about;} #mp-box-links {grid-area: links;} #mp-box-contribute {grid-area: contribute;} #mp-box-featured {grid-area: featured;} #mp-box-basics {grid-area: basics;} #mp-box-gallery {grid-area: gallery;} #mp-box-iconlists {grid-area: iconlists;} /* Example Main Page 1 Grid Layout */ #mp-layout1-container { display:grid; grid-template-areas: "welcome" "about" "featured" "basics" "gallery" "links" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout1-container { grid-template-areas: "welcome welcome" "about about" "featured basics" "gallery links" "contribute contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout1-container { grid-template-areas: "welcome welcome welcome" "about about basics" "featured featured basics" "gallery links links" "contribute contribute contribute"; grid-template-columns: 2fr 1fr 2fr; } } /* Example Main Page 2 Grid Layout */ #mp-layout2-container { display:grid; grid-template-areas: "welcome" "links" "about" "gallery" "iconlists" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout2-container { grid-template-areas: "welcome links" "gallery about" "iconlists about" "iconlists contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout2-container { grid-template-areas: "welcome welcome links" "welcome welcome about" "gallery gallery about" "iconlists iconlists contribute"; grid-template-columns: 3fr 2fr 2fr; } } /* Example Main Page 3 Grid Layout */ #mp-layout3-container { display:grid; grid-template-areas: "welcome" "about" "featured" "four" "priority" "projects" "wiki"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout3-container { grid-template-areas: "welcome welcome" "about about" "featured four" "priority projects" "wiki wiki"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout3-container { grid-template-areas: "welcome welcome welcome" "about about four" "featured featured four" "priority projects projects" "wiki wiki wiki"; grid-template-columns:2fr 1fr 2fr; } } .mp-box { display:flex; flex-flow:column nowrap; width: calc(100% - 2px); box-sizing: border-box; background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.25); border:1px solid var(--wiki-content-border-color); padding:0px; } .mp-body { height: 100%; display: flex; padding:0.5em; flex-flow: column nowrap; } .mp-box.centered-content .mp-body { height: 100%; display: flex; flex-flow: column nowrap; justify-content: space-evenly; } .mp-box.has-floating-image { display:block; } .mp-box.has-floating-image .mp-body { height:unset; display:block; } .mp-box h2 { text-align:center; font-weight:bold; font-family:var(--wiki-heading-font-family); overflow: initial; border-bottom: 1px solid var(--wiki-content-border-color); font-size: 150%; margin: 0; padding: 5px 0; color:var(--wiki-heading-color); } .mp-box .welcome-message { font-size: 200%; margin: 0; padding: 5px 0; color: #fff; filter: drop-shadow(0px 2px 3px #000); } #mp-banner-container { position: relative; } #mp-box-welcome { text-align:center; position:relative; overflow:hidden; } #mp-welcome { position: relative; height: 100%; font-family: var(--wiki-heading-font-family); z-index: 2; box-sizing: border-box; } #mp-welcome .welcome-subtitle { height: 100%; background:rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); padding:0.5em; } #mp-banner { position: absolute; top: 48px; width: 100%; height: 100%; filter: blur(5px); z-index: -1; background: url(/images/e/e0/MP_banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: top center; } .view-dark #mp-banner { filter: blur(5px) brightness(50%); } .view-light #mp-banner { filter: blur(5px) contrast(50%); } /* [[Template:MP_link]] */ .mp-links { --gap:10px; } .mp-links > ul { display: flex; flex-flow: row wrap; justify-content: space-evenly; margin: 2px; gap:var(--gap); } .mp-links > ul > li { display:flex; flex-flow:column nowrap; align-items:stretch; text-align: center; box-sizing:border-box; flex: max(calc(50% - var(--gap)), 5em) 1 1; outline:1px solid var(--wiki-content-link-color); transition:0.1s ease-in; } .mp-links > ul > li:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); } .mp-links.columns-1 > ul > li {flex: max(calc(100% - var(--gap)), 5em) 1 1;} .mp-links.columns-2 > ul > li {flex: max(calc(50% - var(--gap)), 5em) 1 1;} .mp-links.columns-3 > ul > li {flex: max(calc((100% / 3) - var(--gap)), 5em) 1 1;} .mp-links.columns-4 > ul > li {flex: max(calc(25% - var(--gap)), 5em) 1 1;} .mp-links.columns-5 > ul > li {flex: max(calc(20% - var(--gap)), 5em) 1 1;} .mp-links.columns-6 > ul > li {flex: max(calc((100% / 6) - var(--gap)), 5em) 1 1;} .mp-links.columns-7 > ul > li {flex: max(calc((100% / 7) - var(--gap)), 5em) 1 1;} .mp-links > ul > li:hover a { text-decoration: underline; } .mp-links > ul > li > a { display: flex; align-items: center; justify-content: center; height:100%; flex:1 1 auto; box-sizing:border-box; padding:5px; } .mp-links > ul > li > a:first-child { height:100%; } .mp-links > ul > li > a:last-child:not(:first-child) { height:unset; } .mp-links.stretch, .mp-links.stretch > ul { height:100%; } .mp-links.side-image li { flex-flow:row nowrap; } /* MP icon lists */ .mp-iconlists { display: flex; flex-flow: wrap; gap: 5px 20px; } .mp-iconlists > .mp-iconlist { flex: 1; min-width: fit-content; } .mp-iconlist > h3 { padding: 0; margin: 0; } .mp-iconlist > ul { list-style: none; margin: 0; } /* MP gallery */ .mp-box ul.gallery { display: flex; flex-flow: wrap; gap: 5px 10px; align-items: flex-end; justify-content: space-evenly; margin: 0; } .mp-box ul.gallery .gallerytext { margin-top: 1em; background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: inset 0 0 20px 2px #000; text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000; } /*********************** * End main page layout * ************************/ /*********************** * Start DRUID infoboxes * ************************/ .druid-container { /* These variables are designed to inherit from your wiki's color variables. If your wiki uses a different naming scheme, change the inner names to match yours. If your wiki doesn't use color variables you should consider doing so, otherwise you can replace the inner variables or the fallback values with colors that match your wiki. */ --druid-background-color: var(--wiki-content-background-color, #ffffff); --druid-background-color--rgb: var(--wiki-content-background-color--rgb, 255, 255, 255); --druid-secondary-background-color: var(--wiki-accent-color, #36c); --druid-secondary-background-color--rgb: var(--wiki-accent-color--rgb, 51, 102, 204); --druid-secondary-background-label-color: var(--wiki-accent-label-color, #fff); --druid-secondary-background-label-color--rgb: var(--wiki-accent-label-color--rgb, 255, 255, 255); --druid-tertiary-background-color: var(--wiki-content-background-color--secondary, #eaecf0); --druid-tertiary-background-color--rgb: var(--wiki-content-background-color--secondary--rgb, 234, 236, 240); --druid-border-color: var(--wiki-content-border-color, #a7d7f9); --druid-border-color--rgb: var(--wiki-content-border-color--rgb, 167, 215, 249); --druid-link-color: var(--wiki-content-link-color, #0645ad); --druid-link-color--rgb: var(--wiki-content-link-color--rgb, 6, 69, 173); --druid-link-label-color: var(--wiki-content-link-label-color, #fff); --druid-link-label-color--rgb: var(--wiki-content-link-label-color--rgb, 255, 255, 255); } .druid-container { border: 4px solid var(--druid-border-color); border-radius: 3px; background: var(--druid-background-color); float: right; clear: right; margin: 0 0 1em 1em; width: 16.875em; box-sizing: border-box; border-collapse: collapse; } div.druid-container { width: 22em; } @media screen and (max-width: 450px) { .druid-container { width:100%; } } @media screen and (max-width: 720px) { .druid-container { float: none; margin: 0.5rem auto; } } .druid-main-images-file, .druid-main-image { text-align:center; } .druid-infobox .druid-title, .druid-infobox .druid-section { background:rgba(var(--druid-secondary-background-color--rgb), 0.75); color:var(--druid-secondary-background-label-color); text-align:center; font-size:1.5em; padding:1px; } .druid-section { font-size: 1.25em; font-weight: 500; } .druid-label { font-weight:bold; text-align: right; box-sizing: border-box; } .druid-row > .druid-label { width: 48%; } .druid-row > .druid-label, .druid-row > .druid-data { padding-inline: 0.3em; } .druid-main-image, .druid-main-images { padding:5px; } .druid-main-image img, .druid-main-images img { max-width:100%; height:auto; } .druid-main-images-labels { display:flex; flex-direction:row; flex-wrap:wrap; justify-content: space-evenly; margin:0.25em; gap:0.25em; } .druid-main-images-label { cursor:pointer; flex:1 1 auto; text-align:center; transition:.1s ease-in; outline:1px solid var(--druid-link-color); } .druid-main-images-label.focused { background:var(--druid-link-color); color:var(--druid-link-label-color); } .druid-main-images-label:not(.focused):hover { background:rgba(var(--druid-link-color--rgb), 0.25); } .druid-toggleable-data:not(.focused), .druid-main-images-file:not(.focused), .druid-toggleable-heading:not(.focused) { display:none; } .druid-row:not(:has(.druid-grid)):has(.druid-toggleable-data-empty.focused) { display:none; } .druid-section:has(.druid-toggleable-heading-empty.focused) { display:none; } .druid-grid { display:grid; gap: 0.3em; padding: 0.35em; } .druid-grid-item { background:var(--druid-tertiary-background-color); padding:0.25em; border:1px solid rgba(var(--druid-border-color--rgb), 0.5); border-radius: 2px; } .druid-grid-item > .druid-label, .druid-grid-item > .druid-data { text-align: center; } .druid-collapsed { display:none; } .druid-collapsible { cursor:pointer; position:relative; } .druid-collapsible::after { content:'–'; display:block; position:absolute; right:10px; font-size:20px; font-weight:bold; color:var(--druid-secondary-background-label-color); } .druid-collapsible-collapsed::after { content:'+'; } .druid-section-container:has(.druid-toggleable-data-empty.focused):not(:has(.druid-toggleable-data-nonempty.focused)):not(:has(.druid-data-nonempty)) { display: none; } /***************************************** Div support *****************************************/ div.druid-row { display:flex; margin-block: 1px; } div.druid-row + div.druid-row { margin-top: 0; } div.druid-row > .druid-label { background: var(--druid-tertiary-background-color); } .druid-infobox .druid-title { font-weight: 700; } .druid-infobox #toc { display:none; } /*********************** * End DRUID infoboxes * ************************/ /*** Miscellaneous ***/ .responsive-image { max-width:100%; height:auto; } .view-dark .invert-on-dark, .view-light .invert-on-light { filter:invert(100%); } @media screen and (min-width:720px) { .mobileonly { display:none; } } @media screen and (max-width:720px) { .nomobile { display:none; } } /************************** * Start Modular Templates * **************************/ /********* [[Template:Ambox]] *********/ .ambox { border: 1px solid var(--wiki-content-border-color); border-left: 10px solid var(--ambox-color); border-radius: 2px; display: flex; align-items: center; gap: .6em; margin: 1em 0; padding: 3px .6em; background-color: var(--wiki-content-background-color--secondary); box-shadow: 2px 2px 5px 0px #0002; } @media (min-width: 720px) { .ambox { margin-inline: 10%; } } .ambox.tiny { padding: .04rem .5em; margin-inline: 0; width: fit-content; } .ambox + .ambox { margin-top: -.6em; } .ambox-content p { margin: .15em 0; } .ambox-title { font-weight: bold; } /********* [[Template:Hatnote]] *********/ .hatnote { padding: 1px 0 1px 1.6em; margin-bottom: 0.5em; font-style: italic; border-top: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); border-bottom: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); } .hatnote.icon { padding-left: 0; } /********* [[Template:Spoiler]] *********/ .spoiler-content { background-color: rgb(127, 127, 127); transition: all 0.3s; cursor: pointer; } .spoiler-content > span { opacity: 0; transition: all 0.3s; } .spoiler-content > * { pointer-events:none; } .spoiler-content.show > * { pointer-events:unset; } .spoiler-content.show { background-color: rgba(127, 127, 127, 0); } .spoiler-content.show > span { opacity: 1; } /********* [[Template:Link icon]] *********/ .link-icon { display: inline-flex; align-items: center; height: var(--link-icon-line-height); vertical-align: bottom; } .link-icon .regular { align-self: center; } .link-icon .regular a { display: flex; } .link-icon .regular img { height: var(--link-icon-size); max-width: var(--link-icon-size); } .link-icon .fallback { outline: 1px solid var(--wiki-content-text-color); border-radius: 50%; text-align: center; width: var(--link-icon-size); line-height: var(--link-icon-size); } .link-icon.notext .fallback { display: inline-block; } .link-icon.notext { display: inline; } /********* [[Template:Quote]] *********/ .quote { background: var(--wiki-content-background-color--secondary); border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: .5em 0; padding: .5em; } .quote .block { display: block; } .quote .title { font-size: large; font-weight: bold; } .quote .content { font-style: italic; } .quote .author { font-weight: bold; text-align: end; } .quote .marks-wrapper { display: flex; gap: 5px; } .quote .marks-wrapper::before, .quote .marks-wrapper::after { font-size: 100px; line-height: 0px; } .quote .marks-wrapper::before { content: "“"; margin-top: 40px; } .quote .marks-wrapper::after { content: "”"; align-self: end; margin-bottom: -10px; } /************************ * End Modular Templates * *************************/ afa63dfd964d054ed506472529932ee9a75c9a1a MediaWiki:Common.js 8 10 11 2024-05-28T15:01:37Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript /* Any JavaScript here will be loaded for all users on every page load. */ /* DRUID */ $(function () { $(".druid-main-images-label").off("click"); $(".druid-main-images-label").click(function () { var $parent = $(this).closest(".druid-container"); $parent.find(".druid-toggleable").removeClass("focused"); var i = $(this).attr("data-druid"); $parent.find(".druid-toggleable[data-druid=" + i + "]").addClass("focused"); }); $(".druid-collapsible").off("click"); $(".druid-collapsible").click(function () { var kind = $(this).attr("data-druid-section"); $(this).toggleClass("druid-collapsible-collapsed"); $(this) .closest(".druid-container") .find("[data-druid-section-row=" + kind + "]") .toggleClass("druid-collapsed"); }); }); /* End DRUID */ /* [[Template:Spoiler]] */ $(function () { $('.spoiler-content') .off('click') // in case this code is loaded twice .on('click', function(e){ $(this).toggleClass('show'); }).find('a').on('click', function(e){ e.stopPropagation(); }); }); /* End Template:Spoiler */ /* Link to imported modules from Lua code */ $(function() { var config = mw.config.get([ 'wgCanonicalNamespace', 'wgFormattedNamespaces' ]); if (config.wgCanonicalNamespace !== 'Module') { return; } var localizedNamespace = config.wgFormattedNamespaces[828]; $('.s1, .s2, .s').each(function() { var $this = $(this); var html = $this.html(); var quote = html[0]; var isLongStringQuote = quote === '['; var quoteRE = new RegExp('^\\' + quote + '|\\' + quote + '$', 'g'); if (isLongStringQuote) { quoteRE = /^\[\[|\]\]$/g; } var name = html.replace(quoteRE, ''); var isEnglishPrefix = name.startsWith('Module:'); var isLocalizedPrefix = name.startsWith(localizedNamespace + ':'); var isDevPrefix = name.startsWith('Dev:'); if (isEnglishPrefix || isLocalizedPrefix || isDevPrefix) { var attrs = { href: mw.util.getUrl(name) }; if (isDevPrefix) { attrs.href = 'https://commons.wiki.gg/wiki/Module:' + mw.util.wikiUrlencode(name.replace('Dev:', '')); attrs.target = '_blank'; attrs.rel = 'noopener'; } var link = mw.html.element('a', attrs, name); var str = quote + link + quote; if (isLongStringQuote) { str = '[[' + link + ']]'; } $this.html(str); } }); }); 45e585a86116588c22b113b568b4ca10b3baecdb MediaWiki:Gadget-UploadMultipleFiles.js 8 11 12 2024-05-28T15:01:39Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript /* Modified version of https://dev.fandom.com/wiki/UploadMultipleFiles * from https://terraria.wiki.gg/wiki/MediaWiki:Gadget-uploadMultipleFiles.js */ mw.loader.using(["site", "mediawiki.util"]).then(function() { if (mw.config.get("wgCanonicalSpecialPageName") !== "Upload") return; if (window.__wgg_UploadMultipleFiles_IsLoaded) { return; } window.__wgg_UploadMultipleFiles_IsLoaded = true; var l10nFactory = l10nFactory || function($lang, $data) { return function ($key) { // (null == undefined) is true, (null === undefined) is false return ($data[$lang] && $data[$lang][$key] != null) ? $data[$lang][$key] : $data.en[$key]; }; }; const l10n = l10nFactory(mw.config.get("wgUserLanguage"), { en: { multiupload: "Upload multiple files:", yes: "Yes", no: "No", sourcefiles: "Source files:", categoryname: "Category name:", categorynamehint: "Page name of the category the files will automatically be added to, e.g. Item images", categorynamespace: "Category", uploadfiles: "Upload files", nofiles: "Please select some files first.", nolicense: "Please select a valid license first.", summary: "Summary", license: "Licensing", categories: "Categories", uploading: "Uploading files...", uploaded: "Uploaded:", failed: "Failed:", done: "Done." } }); const getUploadDescription = function() { var sections = []; var summary = $("#wpUploadDescription").val(); var licenseDisplayName = $("#wpLicense option:selected").val(); var categoryName = $("#multiFileCategory").val(); if (summary !== "") sections.push(summary); if (licenseDisplayName !== "") { var licenseTemplateText = $("#wpLicense option:selected").prop("title"); sections.push("== " + l10n("license") + " ==\n" + licenseTemplateText); } if (categoryName !== "") sections.push("[[" + l10n("categorynamespace") + ":" + categoryName + "]]"); return sections.join("\n\n"); }; const getWatchlistPreference = function() { if ($("#wpWatchthis").is(":checked")) { return "watch"; } else { return "nochange"; } }; $(function(){ $("#wpUploadFile").parent().parent().addClass("regularFileSelect"); $("tr.regularFileSelect").before('<tr><td class="mw-label">'+ l10n("multiupload") + '</td><td class="mw-input"><label><input type="radio" name="multipleFiles" value="'+ l10n("yes") + '" /> '+ l10n("yes") + '</label> &nbsp; <label><input type="radio" name="multipleFiles" value="'+ l10n("no") + '" checked="" /> '+ l10n("no") + '</label></td></tr>'); $("tr.regularFileSelect").after('<tr class="multipleFileSelect" style="display:none;"><td class="mw-label">' + l10n("sourcefiles") + '</td><td class="mw-input"><input type="file" id="multiupload" multiple /></td></tr>'); $("input[name='wpUpload']").addClass("regularFileSelect"); $("#wpDestFile").parent().parent().addClass("regularFileSelect"); $("#wpIgnoreWarning").parent().parent().addClass("regularFileSelect"); // Append "category name" textbox to multiupload section $("#mw-upload-form #mw-htmlform-description tbody").append('<tr class="mw-htmlform-field-HTMLTextField multipleFileSelect" style="display:none;"><td class="mw-label"><label for="multiFileCategory"><abbr title="' + l10n("categorynamehint") + '">' + l10n("categoryname") + '</abbr></label></td><td class="mw-input"><input id="multiFileCategory" name="multiFileCategory" size="60"></td></tr>'); $("input[name='wpUpload']").after('<input type="button" value="' + l10n("uploadfiles") + '" class="multipleFileSelect" style="display:none;" id="multiFileSubmit" />'); $("input[name='multipleFiles']").change(function() { if (this.value === l10n("yes")) { $(".regularFileSelect").hide(); $(".multipleFileSelect").show(); } else { $(".regularFileSelect").show(); $(".multipleFileSelect").hide(); } }); $("#multiFileSubmit").click(function() { var files = $("#multiupload")[0].files; // Cancel upload if no files are selected if (files.length === 0) { alert(l10n("nofiles")); return false; } // Cancel upload if no license is selected if ($("#wpLicense option:selected").val() === "" && !mw.config.get("UMFBypassLicenseCheck")) { alert(l10n("nolicense")); return false; } // Description is summary + license + category var description = getUploadDescription(); var watch = getWatchlistPreference(); $("#firstHeading").text(l10n("uploading")); $("#mw-content-text").html("<h3>" + l10n("uploaded") + "</h3><ul></ul><div style='display:none;' id='multiUploadFailed'><h3>" + l10n("failed") + "</h3><ul></ul></div>"); var currentFileIdx = 0; var uploadCurrentFile; uploadCurrentFile = function() { if (currentFileIdx > files.length) { $("#mw-content-text").append("<h3>"+ l10n("done") + "</h3>"); return; } if (files[currentFileIdx] === undefined) { currentFileIdx++; uploadCurrentFile(); return; } fd = new FormData(); fd.append("action", "upload"); fd.append("token", mw.user.tokens.get("csrfToken")); fd.append("filename", files[currentFileIdx].name); fd.append("file", files[currentFileIdx]); fd.append("text", description); fd.append("watchlist", watch); fd.append("ignorewarnings", 1); fd.append("format", "json"); $.ajax({ url: mw.util.wikiScript("api"), method: "POST", data: fd, cache: false, contentType: false, processData: false, type: "POST" }).done(function(d) { if (d.error == undefined) { $("#mw-content-text > ul").append('<li><a href="' + d.upload.imageinfo.descriptionurl + '" target="_blank">' + d.upload.filename + '</a></li>'); } else { $("#multiUploadFailed ul").append('<li>' + files[currentFileIdx].name + '</li>'); $("#multiUploadFailed").show(); } currentFileIdx++; uploadCurrentFile(); }).fail(function() { $("#multiUploadFailed ul").append('<li>' + files[currentFileIdx].name + '</li>'); $("#multiUploadFailed").show(); currentFileIdx++; uploadCurrentFile(); }); }; uploadCurrentFile(); }); }); }); b05306b3ea3271c87b87546ac6619aa30e47782f MediaWiki:Gadget-fixCrossWikiNotif.js 8 12 13 2024-05-28T15:01:41Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript mw.loader.using(['ext.echo.api', 'mediawiki.language']).then(function() { if (mw.echo.api.EchoApi.prototype.DEFAULTfetchNotifications) return; mw.echo.api.EchoApi.prototype.DEFAULTfetchNotifications = mw.echo.api.EchoApi.prototype.fetchNotifications; mw.echo.api.EchoApi.prototype.fetchNotifications = function() { return this.DEFAULTfetchNotifications.apply(this, arguments).then(function(data) { var foreignNotifData = ( data || { list: [] } ).list.find(function(notifData) { return notifData.type === 'foreign'; }), wikiList, source, title; if (foreignNotifData) { wikiList = []; for (source in foreignNotifData.sources) { title = source.replace('_', '.wiki.gg/').replace(/\/en$/, ''); wikiList.push(title); foreignNotifData.sources[source].title = title; foreignNotifData.sources[source].url = 'https://' + title + '/api.php'; foreignNotifData.sources[source].base = 'https://' + title + '/wiki/$1'; } if (foreignNotifData['*'] && foreignNotifData['*'].body === mw.language.listToText(Array(wikiList.length).fill(''))) { foreignNotifData['*'].body = mw.language.listToText(wikiList); } } return data; }); }; }); 279c1a0c4d8bc5df1e273dece10edb5a703087b9 MediaWiki:Gadget-hoverShowSpoilers.css 8 13 14 2024-05-28T15:01:42Z RheingoldRiver 2743 Adding default set of pages css text/css .spoiler-content:hover > * { pointer-events:unset; } .spoiler-content:hover { background-color: rgba(127, 127, 127, 0); } .spoiler-content:hover > span { opacity: 1; } d2156d876c40acb9b30462c1e981a3b466131116 MediaWiki:Gadget-purge.js 8 14 15 2024-05-28T15:01:43Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript var l10n = (function(){ var $text = { 'buttonlabel': { 'en': 'Purge', 'de': 'Aktualisieren', 'fr': 'Purger', 'ru': 'Обновить', 'pt': 'Actualizar', 'pt-br': 'Actualizar', }, 'hovertext': { 'en': 'Purge the server cache for this page', 'de': 'Den Server-Cache dieser Seite löschen', 'fr': 'Purge le cache du serveur de cette page', 'ru': 'Очистить кэш сервера на этой странице', 'pt': 'Limpe o cache do servidor para esta página', 'pt-br': 'Limpe o cache do servidor para esta página', } } var $lang = mw.config.get( 'wgUserLanguage' ) || 'en'; return function(key){ return $text[key] && ($text[key][$lang] || $text[key]['en']) || ''; } })(); if ( mw.config.get( 'wgNamespaceNumber' ) !== -1 ) { $(document).ready(function(){ var url = new URL(window.location.href); url.searchParams.set('action', 'purge'); mw.util.addPortletLink('p-cactions', url.href, l10n('buttonlabel'), 'ca-gadget-purgecache', l10n('hovertext'), '1'); }); } 7d39b07db2a88b17920f5eb5d7f86fd895cc8f44 MediaWiki:Gadget-userProfile.css 8 15 16 2024-05-28T15:01:44Z RheingoldRiver 2743 Adding default set of pages css text/css #contentSub > * + .horse-userprofile { margin-top: 1em; } .horse-userprofile { font-size: 120%; color: var(--wiki-content-text-color); border: 2px solid var(--wiki-content-border-color); padding: 6px 12px; } .horse-userprofile-info span:first-of-type { font-weight: bold; } 1729445bb17e2974426befaf9bd441ab4bf189c5 MediaWiki:Gadget-userProfile.js 8 16 17 2024-05-28T15:01:46Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript // User profile // <nowiki> mw.loader.using( [ 'mediawiki.util', 'mediawiki.api' ] ).done( function() { var username = mw.config.get('wgRelevantUserName'); var lang = mw.language.bcp47(mw.config.get('wgUserLanguage')); if ( username && !window.loadedHorseUserProfile ) { window.loadedHorseUserProfile = true; var dateOptions = { year: "numeric", month: "short", day: "numeric", hour: "2-digit", minute: "2-digit", timeZone: "UTC", timeZoneName: "short" }; var api = new mw.Api(); if ( mw.util.isIPAddress(username) ) api.get( { action: 'query', list: ['usercontribs', 'blocks'], ucuser: username, ucprop: [], uclimit: 'max', bkip: username, bkprop: ['user', 'by', 'timestamp', 'expiry', 'reason'], bklimit: 1, formatversion: 2 } ).done( function(data) { var editcount = data.query.usercontribs.length; if ( data.continue ) editcount = data.limits.usercontribs+'+' var user = { groups: ['*'], editcount: editcount }; formatProfile(user, data.query.blocks[0]); } ); else api.get( { action: 'query', list: 'users', ususers: username, usprop: ['groups', 'editcount', 'registration', 'blockinfo', 'emailable'], formatversion: 2 } ).done( function(data) { var user = data.query.users[0]; var block; if ( user.blockid ) block = { user: username, by: user.blockedby, timestamp: user.blockedtimestamp, expiry: user.blockexpiry, reason: user.blockreason }; formatProfile(user, block); } ); function formatProfile(user, block) { user.groups.splice(user.groups.indexOf('*'), 1); var text = '<div class="horse-userprofile-info">'; if ( user.groups.length ) { var groupList = user.groups.map( function(group) { var grouppage = '{{MediaWiki:grouppage-'+group+'}}'; return [ '{{#ifexist: '+grouppage+' | [['+grouppage+'|{{int:group-'+group+'}}]] | {{int:group-'+group+'}} }}', '{{#ifexist: '+grouppage+' | [['+grouppage+'|{{int:group-'+group+'-member|'+username+'}}]] | {{int:group-'+group+'-member|'+username+'}} }}' ]; } ).reduce( function(prev, cur) { prev[0].push(cur[0]); prev[1].push(cur[1]); return prev; }, [[], []] ); text += '\n\n<span>{{int:prefs-memberingroups|'+user.groups.length+'|'+username+'}}</span>\t<span>{{int:prefs-memberingroups-type|'+mw.language.listToText(groupList[0])+'|'+mw.language.listToText(groupList[1])+'}}</span>'; } text += '\n\n<span>{{int:prefs-edits}}</span>\t<span>[[Special:Contribs/'+username+'|'+mw.language.convertNumber(user.editcount)+']]</span>'; if ( user.registration ) { text += '\n\n<span>{{int:prefs-registration}}</span>\t<span>'+mw.language.convertNumber(new Date(user.registration).toLocaleString(lang, dateOptions))+'</span>'; if ( !user.emailable ) text += '\n\n<span>{{int:nowikiemailtext|'+username+'}}</span>'; } text += '\n\n</div>'; if ( block && mw.config.get('wgArticleId') !== 0 ) { var blockDate = new Date(block.timestamp); var blockexpiry = '{{int:infiniteblock}}'; if ( !['infinite', 'indefinite', 'infinity', 'never'].includes(block.expiry) ) { var expiry = new Date(block.expiry.replace( /(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2,3})/, '$1-$2-$3T$4:$5:$6Z' )); var duration = expiry - blockDate; var blockDuration = []; var factor = 1000; if ( duration % factor === 0 ) blockDuration = ['duration-seconds', Math.floor(duration / factor)]; factor *= 60; if ( duration % factor === 0 ) blockDuration = ['duration-minutes', Math.floor(duration / factor)]; factor *= 60; if ( duration % factor === 0 ) blockDuration = ['duration-hours', Math.floor(duration / factor)]; factor *= 24; if ( duration % factor === 0 ) blockDuration = ['duration-days', Math.floor(duration / factor)]; if ( duration % (factor*7) === 0 ) blockDuration = ['duration-weeks', Math.floor(duration / (factor*7))]; if ( duration % (factor*30) === 0 ) blockDuration = ['months', Math.floor(duration / (factor*30))]; factor *= 365; if ( duration % factor === 0 ) blockDuration = ['duration-years', Math.floor(duration / factor)]; if ( duration % (factor*10) === 0 ) blockDuration = ['duration-decades', Math.floor(duration / (factor*10))]; if ( duration % (factor*100) === 0 ) blockDuration = ['duration-centuries', Math.floor(duration / (factor*100))]; if ( duration % (factor*1000) === 0 ) blockDuration = ['duration-millennia', Math.floor(duration / (factor*1000))]; if ( blockDuration.length < 2 || blockDuration[1] > 1000 ) blockexpiry = mw.language.convertNumber(expiry.toLocaleString(lang, dateOptions)); else blockexpiry = '{{int:'+blockDuration.join('|')+'}}'; } text += '<div class="horse-userprofile-block mw-warning-with-logexcerpt"><div>\n{{int:blocked-notice-logextract|'+username+'}}\n'; text += '* '+mw.language.convertNumber(blockDate.toLocaleString(lang, dateOptions))+' {{int:logentry-block-block|[[User:'+block.by+'|'+block.by+']] <span class="mw-usertoollinks mw-changeslist-links"><span>[[User talk:'+block.by+'|{{int:talkpagelinktext}}]]</span> <span>[[Special:Contribs/'+block.by+'|{{int:contribslink}}]]</span></span>|'+block.by; if ( mw.util.isIPAddress(block.user, true) ) text += '|[[Special:Contribs/'+block.user+'|'+block.user+']] <span class="mw-usertoollinks mw-changeslist-links"><span>[[User talk:'+block.user+'|{{int:talkpagelinktext}}]]</span></span>'; else text += '|[[User:'+block.user+'|'+block.user+']] <span class="mw-usertoollinks mw-changeslist-links"><span>[[User talk:'+block.user+'|{{int:talkpagelinktext}}]]</span> <span>[[Special:Contribs/'+block.user+'|{{int:contribslink}}]]</span></span>'; text += '|'+block.user+'|'+blockexpiry+'|}} <span class="comment">{{int:parentheses|'+block.reason+'}}</span></div></div>'; } api.parse( text, { disablelimitreport: true, wrapoutputclass: 'horse-userprofile mw-message-box mw-content-'+($('#contentSub').attr('dir')||'ltr'), uselang: mw.config.get('wgUserLanguage') } ).done( function(parsedText) { $('#contentSub').append(parsedText.replace( /\u29FCgroup-([^\u29FC\u29FD]+?)(?:-member)?\u29FD/g, '$1' )); } ); } } } ); // </nowiki> 2df0d96710fe446c5289ea1c484419b50c43fd5b MediaWiki:Gadgets-definition 8 17 18 2024-05-28T15:01:47Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki * purge[ResourceLoader|default|type=general|rights=edit,purge|dependencies=mediawiki.util]|purge.js * userProfile[ResourceLoader|dependencies=mediawiki.api|default]|userProfile.js|userProfile.css * UploadMultipleFiles[ResourceLoader|default|rights=edit,upload]|UploadMultipleFiles.js * fixCrossWikiNotif[ResourceLoader|dependencies=ext.echo.api,mediawiki.language|default|hidden|type=general]|fixCrossWikiNotif.js * hoverShowSpoilers[ResourceLoader|type=styles]|hoverShowSpoilers.css 82cc1264e5c070b25d638cab8f37cf261245525f MediaWiki:Licenses 8 18 19 2024-05-28T15:01:48Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki * License|game|This contains content from the game or its official media * License|fairuse|This will be used in a way that qualifies as "fair use" under US law * License|CC0|This file is licensed under the CC0 1.0 License * License|CC-BY-NC-ND|This is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 License * License|CC-BY-NC-SA|This is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License * License|CC-BY-NC|This is licensed under the Creative Commons Attribution-NonCommercial 3.0 License * License|CC-BY-ND|This is licensed under the Creative Commons Attribution-NoDerivs 3.0 License * License|CC-BY-SA|This is licensed under the Creative Commons Attribution-ShareAlike 3.0 License * License|CC-BY|This is licensed under the Creative Commons Attribution 3.0 License * License|CC-PD|This is in the public domain * License|CC-SRR|This is licensed under the Creative Commons Some Rights Reserved License * License|nolicense|I don't know the license 048e9ab2b3c87f0a7f6424d369cea89fe620df10 MediaWiki:Mainpage 8 19 20 2024-05-28T15:01:49Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{SITENAME}} 3879910e8b355a24373fd09ccc909145b2639907 MediaWiki:Theme-definitions 8 20 21 2024-05-28T15:01:50Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki * light[bundled|kind=light] * dark[bundled|kind=dark] 05cdfdf87ea42919cc6ea267d3972cc06847ed60 MediaWiki:Vector.css 8 21 22 2024-05-28T15:01:51Z RheingoldRiver 2743 Adding default set of pages css text/css /* All CSS here will be loaded for users of the Vector skin */ /************************************ * Body, head, and general framework * *************************************/ body { background-image: var(--wiki-body-background-image); background-size:cover; background-position: bottom left; background-repeat: no-repeat; background-attachment: fixed; background-color: var(--wiki-body-background-color); font-family: var(--wiki-body-font-family); accent-color: var(--wiki-accent-color); } #mw-page-base { background:none; } /* let ul default to text that respects color */ ul { list-style-image: none; } /* override default wiki.gg table overflowing in favor of media queries (see bottom of sheet) */ table { display: table; white-space: unset; } /* Signal color scheme hints to browsers */ html.view-dark { color-scheme: dark } html.view-light { color-scheme: light } /************************ * End general framework * *************************/ /************** * Vector tabs * ***************/ .vector-menu-tabs-legacy li, #p-cactions { background-image: linear-gradient( to top, var(--wiki-navigation-background-color) 0, var(--wiki-navigation-background-color--secondary) 1px, var(--wiki-content-background-color) 100%); } #p-cactions { z-index: 5; } .vector-menu-dropdown { /* Matching a built-in rule for .vector-menu-tabs-legacy */ height: 2.5em; } .vector-menu-tabs-legacy li.selected { background: var(--wiki-navigation-selected-background-color); border-color: var(--wiki-navigation-selected-border-color); } .vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading{ background-image: linear-gradient(to bottom,transparent 0,var(--wiki-navigation-border-color) 100%); } .vector-menu-tabs li a, .vector-menu-tabs li.new a, .vector-menu-tabs li.new a:visited, .vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited, #mw-head .vector-menu-dropdown .vector-menu-heading { color: var(--wiki-navigation-text-color); } .vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited { color: var(--wiki-navigation-selected-text-color); } div.vectorMenu .mw-list-item a, .vector-menu-dropdown .mw-list-item.selected a, .vector-menu-dropdown .mw-list-item.selected a:visited { color: var(--wiki-content-link-color); } .vector-menu-dropdown .vector-menu-content { background: none; border: none; box-shadow:none; margin-top:-1px; } .vector-menu-dropdown .vector-menu-content-list { background-color: var(--wiki-content-background-color); border: 1px solid var(--wiki-content-border-color); } .vector-menu-dropdown .vector-menu-heading::after { filter: brightness(0) var(--wiki-icon-to-link-filter); } #p-search { z-index:2; } #p-search .searchButton { background-color:transparent; } /****************** * End vector tabs * *******************/ /******** * Links * *********/ a, .mw-parser-output a.external, .mw-parser-output a.extiw { color: var(--wiki-content-link-color); } a:visited, .mw-parser-output a.extiw:visited, .mw-parser-output a.external:visited { color: var(--wiki-content-link-color--visited); } a:not(.mw-selflink):hover, a:visited:hover, .mw-parser-output a.extiw:hover, .mw-parser-output a.extiw:visited:hover, .mw-parser-output a.external:hover, .mw-parser-output a.external:visited:hover { color:var(--wiki-content-link-color--hover); } a.new, a.new:visited, .mw-usertoollinks-contribs-no-edits { color:var(--wiki-content-redlink-color); } /* move external marker to an after so we can filter it to link color */ .mw-parser-output a.external { background:none; padding-right: 0; } .mw-parser-output a.external::after { display:inline-block; width:1em; height:1em; background-image: url(/skins/Vector/resources/common/images/link-external-small-ltr-progressive.svg?14604); background-position: center right; background-repeat: no-repeat; background-size: 0.857em; content:''; filter:brightness(0) var(--wiki-icon-to-link-filter); vertical-align: text-top; } a.extiw[title^="wikipedia:"]::after { display:inline-block; height:1em; width:1em; margin-left:1px; background-image:url(https://commons.wiki.gg/images/2/28/Wikipedia.svg); background-size:0.857em; background-repeat:no-repeat; background-position:center right; content:''; vertical-align: text-top; } a.extiw[title^="mw:"]::after { display:inline-block; height:1em; width:1em; margin-left:1px; background-image:url(https://commons.wiki.gg/images/9/9b/MediaWiki.svg); background-size:0.857em; background-repeat:no-repeat; background-position:center right; content:''; vertical-align: text-top; } /************ * End links * *************/ /*************** * Left Sidebar * ****************/ #mw-panel .vector-menu-portal { background-color: rgba(var(--wiki-sidebar-background-color--rgb), var(--wiki-sidebar-background-opacity)); border:1px solid var(--wiki-sidebar-border-color); } @media screen and (max-width: 720px) { #mw-panel .vector-menu-portal { background-color: var(--wiki-sidebar-background-color); } } #mw-panel .vector-menu-portal + .vector-menu-portal { border-top: 0; } #mw-panel .vector-menu-portal:last-child { margin-bottom:0; } .vector-menu-portal .vector-menu-content .mw-list-item a, .vector-menu-portal .vector-menu-content .mw-list-item a:visited { color: var(--wiki-sidebar-link-color); } .vector-menu-portal .vector-menu-heading { background: none; color: var(--wiki-sidebar-heading-color); font-family:var(--wiki-heading-font-family); } #t-newpage { --sidebar-icon:url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 384 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-upload { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 512 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-print { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 512 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-whatlinkshere { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 640 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-specialpages { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 576 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-specialpages > a::before, #t-whatlinkshere > a::before, #t-print > a::before, #t-newpage > a::before, #t-upload > a::before { content:''; background-image:var(--sidebar-icon); background-size:contain; background-repeat:no-repeat; background-position:center; display:inline-block; width:15px; height:15px } .view-dark #p-tb .mw-list-item > a::before { filter:var(--wiki-icon-to-link-filter) } #p-tb .mw-list-item > a { display:flex; align-items:center; gap:3px } #p-tb .vector-menu-content-list { display:flex; flex-direction:column; } /******************* * End left sidebar * ********************/ /******* * Logo * ********/ /* [[File:Site-logo.png]] */ .mw-wiki-logo { background-size: contain; } /*********** * End logo * ************/ /*************** * Content area * ****************/ .mw-body, .parsoid-body, .mw-footer { color: var(--wiki-content-text-color); background-color: rgba(var(--wiki-content-background-color--rgb), var(--wiki-content-background-opacity)); border: 1px solid var(--wiki-content-border-color); margin-right: 1em; } .mw-footer { border-top:none; } .mw-footer li { color: var(--wiki-content-text-color); } @media screen and (max-width: 981px) { .mw-body, .parsoid-body, .mw-footer { margin-right: 0; } } /******************************* * End content area and footer * *******************************/ /*********************************** * wiki.gg network elements tuning * *********************************/ #wikigg-footer { position: sticky; top: 100%; margin-top: 0.5rem; clear: both; } /** * Only clear right side in the MW footer to prevent icon overflow. This is accompanied by * the full clear on netfooter to stop the sidebar from offsetting it. */ .mw-footer > div[style^="clear"]:last-child { clear: right !important; } /*************************************** * End wiki.gg network elements tuning * *************************************/ /*********** * Headings * ************/ .mw-body h1, .mw-body h2 { border-bottom: 1px solid var(--wiki-content-border-color); } .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6 { color: var(--wiki-heading-color); font-family:var(--wiki-heading-font-family); } /*************** * End headings * ****************/ /************* * Wikitables * **************/ .wikitable { background: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .wikitable>tr>th, .wikitable>*>tr>th { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .wikitable>tr>td, .wikitable>*>tr>td { border: 1px solid var(--wiki-content-border-color); } /* Forward = yes bg on Special:Interwiki */ table.mw-interwikitable.body td.mw-interwikitable-local-yes { background: rgba(var(--wiki-content-link-color--rgb), .1); } .zebra-table > * > tr:nth-of-type(2n), .zebra-table > tr:nth-of-type(2n) { background:rgba(var(--wiki-content-dynamic-color--secondary--rgb), 0.05); } .view-dark .client-js .sortable:not(.jquery-tablesorter) > * > tr:first-child > th:not(.unsortable), .view-dark .jquery-tablesorter th.headerSort { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%229%22 viewBox=%220 0 21 9%22%3E %3Cpath d=%22m14.5 5-4 4-4-4zm0-1-4-4-4 4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } .view-dark .jquery-tablesorter th.headerSortUp { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%224%22 viewBox=%220 0 21 4%22%3E %3Cpath d=%22m6.5 4 4-4 4 4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } .view-dark .jquery-tablesorter th.headerSortDown { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%224%22 viewBox=%220 0 21 4%22%3E %3Cpath d=%22m14.5 0-4 4-4-4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } /***************** * End wikitables * ******************/ /************** * Preferences * ***************/ .mw-prefs-tabs-wrapper.oo-ui-panelLayout-framed, .mw-prefs-tabs>.oo-ui-menuLayout-content>.oo-ui-indexLayout-stackLayout>.oo-ui-tabPanelLayout { border: none; } .oo-ui-tabSelectWidget-framed { background-color: transparent; border-bottom: 1px solid var(--wiki-content-link-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled, .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { color: var(--wiki-content-text-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected, .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget-selected:hover { background-color: var(--wiki-content-link-color); color: var(--wiki-content-link-label-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected .oo-ui-labelElement-label { border-bottom: none; } .mw-prefs-buttons { background-color: var(--wiki-content-background-color); border-top: 1px solid var(--wiki-content-link-color); } .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled, .oo-ui-textInputWidget .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input[readonly]:not(.oo-ui-pendingElement-pending) { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color) } .oo-ui-pendingElement-pending { background-color: var(--wiki-content-background-color--secondary); background-image: linear-gradient(135deg,var(--wiki-content-background-color) 25%,transparent 25%,transparent 50%,var(--wiki-content-background-color) 50%,var(--wiki-content-background-color) 75%,transparent 75%,transparent); } .oo-ui-dropdownInputWidget.oo-ui-widget-enabled select { color: var(--wiki-content-text-color); } .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:hover, .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:focus, .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:active, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:hover, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:focus, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:active, .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input:focus, .oo-ui-textInputWidget.oo-ui-widget-enabled:active .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input:focus { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } .oo-ui-menuOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget { color: Var(--wiki-content-text-color); } .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-selected, .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-highlighted, .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-highlighted.oo-ui-optionWidget-selected, .oo-ui-dropdownWidget.oo-ui-widget-enabled.oo-ui-dropdownWidget-open .oo-ui-dropdownWidget-handle { background-color: rgba(var(--wiki-content-link-color--rgb), 0.15); color: var(--wiki-content-link-color); } /**************** * End preferences * *****************/ /*************** * Page history * ****************/ #pagehistory li { background-color: transparent; border: none; } #pagehistory li.selected { background-color: var(--wiki-content-background-color--secondary); border: 1px dashed var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .diff td.diff-addedline { background-color: var(--wiki-content-background-color); border-color: var(--wiki-success-color); border-width: 1px 1px 1px 4px; } .diff td.diff-addedline .diffchange { background-color: var(--wiki-success-color); color: var(--wiki-success-label-color); } .diff td.diff-deletedline { background-color: var(--wiki-content-background-color); border-color: var(--wiki-alert-color); border-width: 1px 1px 1px 4px; } .diff td.diff-deletedline .diffchange { background-color: var(--wiki-alert-color); color: var(--wiki-alert-label-color) } .diff td.diff-context { background: transparent; border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .diff-marker a.mw-diff-movedpara-right { color: transparent; } .diff-marker a.mw-diff-movedpara-right:hover:after { opacity: .75; } .diff-marker a.mw-diff-movedpara-right:after { color: var(--wiki-content-text-color); content: "\21a9"; } .diff-marker a.mw-diff-movedpara-left { color: transparent; } .diff-marker a.mw-diff-movedpara-left:hover:after { opacity: .75; } .diff-marker a.mw-diff-movedpara-left:after { color: var(--wiki-content-text-color); content: "\21aa"; } .mw-plusminus-neg { color:var(--wiki-alert-color); } .mw-plusminus-pos { color:var(--wiki-success-color); } /******************* * End page history * ********************/ /******************** * Table of contents * *********************/ #toc, .toc, .toccolours, .mw-warning { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: 0 0.1em 0.2em #000000; } .toctogglelabel { color: var(--wiki-content-link-color); } .tocnumber { color: var(--wiki-content-text-color); } /************************ * End table of contents * *************************/ /************* * Thumbnails * **************/ div.thumb { border: 1px solid var(--wiki-content-border-color); margin: 2px; margin-left: 6px; } img.thumbborder { border: 1px solid var(--wiki-content-border-color); padding: 5px; } div.thumbinner { background-color: rgba(255, 255, 255, .2); } li.gallerybox div.thumb { background-color: rgba(255, 255, 255, .2); border: 1px solid var(--wiki-content-border-color); } html .thumbimage { border: 1px solid var(--wiki-content-border-color); } .thumb, .thumb .thumbinner, .thumb .thumbimage { max-width: 100%; box-sizing: border-box; } .thumb .thumbimage { height: auto; } /* packed-overlay mode for galleries */ ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper { background: rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.8); } /* Responsive floating thumbnails */ @media screen and (max-width: 720px) { div.tright { float: none; margin: 0 auto; width: max-content; } } /***************** * End thumbnails * ******************/ /************** * Wiki editor * ***************/ #wpTextbox0 { /* need !important here to override inline styling */ background-color:var(--wiki-content-background-color) !important; } .wikiEditor-ui { border: none; } .wikiEditor-ui .wikiEditor-ui-top, .wikiEditor-ui .wikiEditor-ui-view { border-color:var(--wiki-content-border-color); } .wikiEditor-ui-toolbar { background: var(--wiki-content-background-color--secondary); } .wikiEditor-ui-toolbar .group, .wikiEditor-ui-toolbar .section-secondary .group { border-color:var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .tabs span.tab a, .wikiEditor-ui-toolbar .tabs span.tab a:visited, .wikiEditor-ui-toolbar .tabs span.tab a.current, .wiikiEditor-ui-toolbar .tabs span.tab a.current:visited, .wikiEditor-ui-toolbar .booklet .index .current { color: var(--wiki-content-link-color); } .wikiEditor-ui-toolbar .group .tool-select .options { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .group .tool-select .options .option { color: var(--wiki-content-text-color); } .wikiEditor-ui-toolbar .group .tool-select .menu .options .option:hover { background-color: var(--wiki-content-background-color); } .wikiEditor-ui-toolbar .tabs span.tab a::before, .wikiEditor-ui-toolbar .group .tool-select .label::after { filter: var(--wiki-icon-general-filter); } .wikiEditor-ui-toolbar .group .label, .wikiEditor-ui-toolbar .group .tool-select .label, .wikiEditor-ui-toolbar .page-table th, .wikiEditor-ui-toolbar .page-table td, .wikiEditor-ui-toolbar .page-characters div span, .wikiEditor-ui-toolbar .booklet .index div { color: var(--wiki-content-text-color); } .wikiEditor-ui-toolbar .booklet>.index> :hover { background-color: var(--wiki-content-background-color--secondary); } .wikiEditor-ui-toolbar .sections .section { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); border-top: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .page-characters div span { border: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .booklet .pages { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .wikiEditor-ui-toolbar .booklet .index .current { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .wikiEditor-ui-toolbar .page-characters div span:hover { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); border-color: var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .page-table td { border-top: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-tabs div a { background: #9A647F; display: inline-block; } .wikiEditor-ui-tabs div.current { border-bottom: 1px solid #3B3352; } .wikiEditor-ui-tabs div.current a { font-weight: bold; } .wikiEditor-ui-tabs { border-left: 1px solid #3B3352; border-top: 1px solid #3B3352; } .wikiEditor-preview-contents { background: transparent; background-color: rgba(255, 255, 255, 0.2); border-color: #3B3352; border-style: solid; border-width: 0 1px 1px; } .wikiEditor-ui-controls { background: transparent; } .wikiEditor-preview-contents, .wikiEditor-preview-loading { background-color: transparent; } .editOptions { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); border-image: none; border-radius: 0 0 5px 5px; border-style: none solid solid; border-width: medium 1px 1px; } input#wpSummary { margin-bottom: 1em; margin-top: 1em; width: 80%; } .view-dark .ace_editor, .ace_editor { --ace-keywords: #CDA869; --ace-regexp: #E9C062; --ace-constants: #CF6A4C; --ace-illegal: #F8F8F8; --ace-deprecated: #D2A8A1; --ace-support: #9B859D; --ace-function: #DAD085; --ace-list: #F9EE98; --ace-variable: #7587A6; --ace-string: #8F9D6A; --ace-illegal-highlight: rgba(86, 45, 86, 0.75); --ace-step-highlight: #665200; --ace-multiselect-shadow: #141414; } .theme-light .ace_editor{ --ace-keywords: #00f; --ace-regexp: #036a07; --ace-constants: #c5060b; --ace-illegal: #f00; --ace-deprecated: #f00; --ace-support: #6d79de; --ace-function: #3c4c72; --ace-list: #b90690; --ace-variable: #318495; --ace-string: #036a07; --ace-illegal-highlight: rgba(255, 0, 0, 0.1); --ace-step-highlight: #fcff00; --ace-multiselect-shadow: #fff; } .ace_editor .ace_gutter { background: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); } .ace_gutter-cell { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.4); } .ace_editor .ace_print-margin { width: 1px; background: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.75); } .ace_editor { /* this image gradient hack effectively lets the element have 2 layers of background */ background-image:linear-gradient(var(--wiki-content-dynamic-color), var(--wiki-content-dynamic-color)); background-color:rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.93); color: rgba(var(--wiki-content-dynamic-color--rgb), 0.93); } .ace_editor .ace_cursor { color: var(--wiki-content-text-color); } .ace_editor .ace_marker-layer .ace_selection { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.20) } .ace_editor.ace_multiselect .ace_selection.ace_start { box-shadow: 0 0 3px 0px var(--ace-multiselect-shadow); } .ace_editor .ace_marker-layer .ace_step { background: var(--ace-step-highlight); } .ace_editor .ace_marker-layer .ace_active-line { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.031) } .ace_editor .ace_gutter-active-line { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.031) } .ace-tm .ace_marker-layer .ace_selected-word { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .ace_editor .ace_marker-layer .ace_selection { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); } .ace_editor .ace_marker-layer .ace_selected-word { border: 1px solid rgba(var(--wiki-content-dynamic-color--rgb), 0.20) } .ace_editor .ace_invisible { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.25) } .ace_editor .ace_keyword, .ace_editor .ace_meta { color: var(--ace-keywords); } .ace_editor .ace_constant, .ace_editor .ace_constant.ace_numeric, .ace_editor .ace_constant.ace_character, .ace_editor .ace_constant.ace_character.ace_escape, .ace_editor .ace_constant.ace_other, .ace_editor .ace_heading, .ace_editor .ace_markup.ace_heading, .ace_editor .ace_support.ace_constant { color: var(--ace-constants); } .ace_editor .ace_invalid.ace_illegal { color: var(--ace-illegal); background-color: var(--ace-illegal-highlight); } .ace_editor .ace_invalid.ace_deprecated { text-decoration: underline; font-style: italic; color: var(--ace-deprecated); } .ace_editor .ace_support, .ace_editor .ace_support.ace_type { color: var(--ace-support); } .ace_editor .ace_fold { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); border-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); } .ace_editor .ace_support.ace_function { color: var(--ace-function); } .ace_editor .ace_list, .ace_editor .ace_markup.ace_list, .ace_editor .ace_storage { color: var(--ace-list); } .ace_editor .ace_entity.ace_name.ace_function, .ace_editor .ace_meta.ace_tag, .ace_editor .ace_variable { color: var(--ace-variable); } .ace_editor .ace_string { color: var(--ace-string); } .ace_editor .ace_string.ace_regexp { color: var(--ace-regexp); } .ace_editor .ace_comment { font-style: italic; color: rgba(var(--wiki-content-dynamic-color--rgb), 0.3); } .ace_editor .ace_xml-pe { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.28); } .ace_editor .ace_indent-guide { background:none; border-right:1px solid rgba(var(--wiki-content-dynamic-color--rgb), 0.2); } .ace_search { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .ace_search_field { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-mix-color); } .ace_button { color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .ace_button:hover { background-color: var(--wiki-accent-color--hover); color: var(--wiki-accent-label-color); } .ace_button.checked { background-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .ace_searchbtn { background-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); border: 1px solid var(--wiki-content-border-color); } .ace_searchbtn:hover { background-color: var(--wiki-accent-color--hover); color: var(--wiki-accent-label-color); } .ace_searchbtn.prev::after, .ace_searchbtn.next::after { border-color: var(--wiki-accent-label-color); } .ace_searchbtn_close { filter: var(--wiki-icon-general-filter); } .wikiEditor-ui .codeEditor-status { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-editform #wpTextbox1 { background: rgba(var(--wiki-content-background-color--rgb), 0.5); color: var(--wiki-content-text-color); } .view-dark .CodeMirror, .CodeMirror { --codemirror-yellow: #ffd700; --codemirror-light-blue: #adf; --codemirror-blue: #08f; --codemirror-green: #290; --codemirror-red: #f50; --codemirror-dark-red: #dd1616; --codemirror-purple: #CD4EF9; --codemirror-pink: #e0e; --codemirror-light-gray: #eee; --codemirror-gray: #84a0a0; } .theme-light .CodeMirror { --codemirror-yellow: #9e8500; --codemirror-light-blue: #008ae7; --codemirror-blue: #0085f9; --codemirror-green: #290; --codemirror-red: #ef4f00; --codemirror-dark-red: #a11; --codemirror-purple: #80c; --codemirror-pink: #ed00ed; --codemirror-light-gray: #858585; --codemirror-gray: #6b8a8a; } .CodeMirror { background-color: var(--wiki-content-background-color); color: var(--wiki-content-text-color) } .CodeMirror .CodeMirror-line::selection, .CodeMirror .CodeMirror-line>span::selection, .CodeMirror .CodeMirror-line>span>span::selection, .CodeMirror .CodeMirror-line::-moz-selection, .CodeMirror .CodeMirror-line>span::-moz-selection, .CodeMirror .CodeMirror-line>span>span::-moz-selection, .CodeMirror .CodeMirror-selected { background: rgba(var(--wiki-content-link-color--rgb), .3); } .CodeMirror-linenumber { color: rgba(var(--wiki-content-text-color--rgb), .6) } .CodeMirror div.CodeMirror-cursor { border-left: 1px solid var(--wiki-content-text-color); } .cm-keyword { color: var(--codemirror-purple) } .cm-def { color: var(--codemirror-blue) } .cm-comment { color: var(--codemirror-yellow) } .cm-variable-2 { color: var(--codemirror-light-blue) } .cm-string { color: var(--codemirror-red) } .cm-atom { color: var(--codemirror-pink) } .cm-number { color: var(--codemirror-green) } .CodeMirror-gutters { background-color: var(--wiki-content-background-color--secondary); border-right-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color) } .cm-mw-matching { background-color: var(--codemirror-yellow) } .cm-mw-skipformatting { background-color: var(--codemirror-light-blue) } .cm-mw-list { color: var(--codemirror-blue) } .cm-mw-doubleUnderscore, .cm-mw-hr, .cm-mw-signature { background-color: var(--wiki-content-background-color--secondary); color: var(--codemirror-blue) } .cm-mw-indenting { color: var(--codemirror-blue) } .cm-mw-mnemonic { color: var(--codemirror-green) } .cm-mw-comment { color: var(--codemirror-gray) } .cm-mw-apostrophes-bold, .cm-mw-apostrophes-italic, .cm-mw-section-header { color: var(--codemirror-blue) } .cm-mw-template, .cm-mw-template-argument-name, .cm-mw-template-bracket, .cm-mw-template-delimiter, .cm-mw-template-name { color: var(--codemirror-purple); } .cm-mw-templatevariable, .cm-mw-templatevariable-bracket, .cm-mw-templatevariable-delimiter, .cm-mw-templatevariable-name { color: var(--codemirror-red) } .cm-mw-parserfunction-bracket, .cm-mw-parserfunction-delimiter, .cm-mw-parserfunction-name { color: var(--codemirror-dark-red) } .cm-mw-exttag-attribute, .cm-mw-exttag-bracket, .cm-mw-exttag-name, .cm-mw-htmltag-attribute, .cm-mw-htmltag-bracket, .cm-mw-htmltag-name { color: var(--codemirror-green) } .cm-mw-link, .cm-mw-link-pagename { color: var(--wiki-content-link-color) } .cm-mw-link-tosection { color: var(--codemirror-blue) } .cm-mw-extlink, .cm-mw-extlink-bracket, .cm-mw-extlink-protocol, .cm-mw-free-extlink, .cm-mw-free-extlink-protocol, .cm-mw-link-bracket, .cm-mw-link-delimiter { color: var(--wiki-content-link-color) } .cm-mw-table-bracket, .cm-mw-table-definition, .cm-mw-table-delimiter { color: var(--codemirror-pink) } .cm-mw-matchingbracket { background-color: var(--wiki-content-background-color--secondary); box-shadow: inset 0 0 1px 1px var(--wiki-content-link-color); font-weight: bold; } /* VisualEditor: Fix broken toolbar layout */ .oo-ui-toolbar { clear: none; } .ve-init-mw-desktopArticleTarget-toolbar-open > .oo-ui-toolbar-bar > div:nth-child(4) { display: none; } .ve-ui-toolbar-floating > .oo-ui-toolbar-bar { top: 35px; } /************* * End editor * **************/ /**************** * Tabber styles * *****************/ .tabber__tab, .tabber__tab:visited { color:var(--wiki-content-link-color); } .tabber__tab:hover, .tabber__tab:hover:visited, .tabber__tab[aria-selected="true"], .tabber__tab[aria-selected="true"]:visited { color: var(--wiki-content-text-color); } .tabber__indicator { background: var(--wiki-content-link-color); } .tabber__header__prev::after, .tabber__header__next::after { filter: var(--wiki-icon-general-filter); } /******************** * End Tabber styles * *********************/ /*************************************** * Various fixes for multi-theme Vector * ****************************************/ .oo-ui-iconElement-icon { filter: var(--wiki-icon-to-link-filter); } .oo-ui-iconElement-icon.oo-ui-icon-reload { filter: brightness(0) var(--wiki-icon-to-link-filter); } fieldset { border-color:var(--wiki-content-border-color); } hr { background-color:var(--wiki-content-border-color); } .CategoryTreeToggle { color:var(--wiki-content-link-color); } input, select { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } input:hover, input:focus, input:active { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } input:focus-visible { outline: 1px solid var(--wiki-content-link-color); } input::file-selector-button, input[type="button"], input[type="submit"] { background-color:var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .vector-body blockquote { border-color:var(--wiki-content-border-color); } ol.references li:target, sup.reference:target { background-color: rgba(var(--wiki-content-link-color--rgb), .1); } /* category bar and filetoc */ .catlinks, ul#filetoc { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } /**/ body .ui-dialog .ui-widget-header { /* we need an important here because the built-in styles have one :( */ background: var(--wiki-content-background-color) !important; border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .ui-widget-header .ui-dialog-titlebar-close .ui-icon-closethick { filter: var(--wiki-icon-general-filter); } .ui-widget-header .ui-dialog-titlebar-close.ui-state-hover { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .ui-widget-content { background: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } body .ui-button { /* we need an important here because the built-in styles have one. Vector is a mess */ background: var(--wiki-accent-color) !important; border-color: var(--wiki-accent-color) !important; color: var(--wiki-accent-label-color); } body .ui-button:hover, body .ui-button:focus, body .ui-button:active { /* we need an important here because we had to use some above */ background: var(--wiki-accent-color--hover) !important; border-color: var(--wiki-accent-color--hover) !important; color: var(--wiki-accent-label-color); } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { color: var(--wiki-accent-label-color); } #contentSub, #contentSub2 { color:var(--wiki-content-text-mix-color); } /* arrow on redirect pages */ .mw-content-ltr .redirectText li:first-child { padding-left:0; background:none; } .mw-content-ltr .redirectText li:first-child::before { content:''; display:inline-block; width:47px; height:1em; vertical-align: middle; background-image:linear-gradient(transparent,transparent),url(/resources/src/mediawiki.action/images/redirect-ltr.svg?ff441); filter:var(--wiki-icon-general-filter); } /* notifications ("your edit was saved", etc.) */ .mw-notification { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); } .mw-notification .oo-ui-labelElement-label { color:var(--wiki-content-text-color); } .mw-notification .oo-ui-iconElement-icon { filter:unset; } /**/ .mime-type.has-warning { color:var(--wiki-content-text-color); } .oo-ui-image-warning.oo-ui-icon-alert, .mw-ui-icon-alert-warning::before { filter:drop-shadow(0 0 3px #000); } .mw_metadata td, .mw_metadata th { border-color: var(--wiki-content-border-color); } .mw_metadata th { background-color: var(--wiki-content-background-color--secondary); } .mw_metadata td { background-color: var(--wiki-content-background-color); } .mw-datatable td, .mw-datatable th { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); } #mw-allmessagestable tbody:hover td, .mw-datatable tr:hover>td { background-color: var(--wiki-content-background-color--secondary); } #mw-allmessagestable .am_default { background-color: rgba(var(--wiki-accent-color--rgb), .8); color: var(--wiki-accent-label-color); } #mw-allmessagestable .am_actual, #mw-allmessagestable tbody:hover .am_default { background-color: rgba(var(--wiki-accent-color--rgb), .6); } #mw-allmessagestable .am_actual { color: var(--wiki-accent-label-color); } #mw-allmessagestable tbody:hover .am_actual { background-color: rgba(var(--wiki-accent-color--rgb), .5); } .mw-datatable, .mw-json { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: inherit; } .mw-datatable>*>tr>th, .mw-datatable>tr>th, .mw-json>*>tr>th, .mw-json>tr>th { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); padding-bottom: 9px; padding-top: 9px; } .mw-datatable>*>tr>td, .mw-datatable>tr>td, .mw-json>*>tr>td, .mw-json>tr>td { border-color: var(--wiki-content-border-color); } .mw-json tr { background-color: inherit; } .mw-json .mw-json-single-value, .mw-json .mw-json-value, .mw-json .value { background: rgba(var(--wiki-success-color--rgb), .6); } .mw-json .mw-json-empty { background: var(--wiki-content-background-color--secondary); } .mw-message-box, .mw-message-box-warning { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); } .mw-message-box-warning { border-color: var(--wiki-warning-color); border-width: 1px 1px 1px 10px; } .wikitable *, .wikitable :after, .wikitable :before { -webkit-box-sizing: inherit; box-sizing: inherit; } .cargo-pagevalues-tableinfo { background-color: var(--wiki-content-background-color); border-bottom: 1px solid var(--wiki-content-border-color); top: 46px; position: static; /* override sticky in the built-in */ } .cargo-table-diagram .cargo-table-svg .node.entity-name rect { fill: var(--wiki-content-background-color--secondary); fill-opacity: 1; } .cargo-table-diagram .cargo-table-svg .node rect { stroke: var(--wiki-content-border-color); opacity: 1; } .cargo-table-diagram .cargo-table-svg .node text tspan { fill: var(--wiki-content-text-color); } table.cargoTable { color: var(--wiki-content-text-color); } table.cargoTable tbody td, table.cargoTable thead th { border: 1px solid var(--wiki-content-border-color); } table.cargoTable tr:hover { background-color: rgba(var(--wiki-accent-color--rgb), .25); } table.cargoTable thead tr:nth-child(odd), table.cargoTable.noMerge thead tr:nth-child(odd) { background-color: var(--wiki-accent-color); } table.cargoTable tbody tr:nth-child(2n), table.cargoTable.noMerge tbody tr:nth-child(2n) { background-color: var(--wiki-content-background-color); } table.cargoTable tbody tr:nth-child(odd), table.cargoTable.noMerge tbody tr:nth-child(odd) { background-color: var(--wiki-content-background-color--secondary); } table.cargoTable th.headerSort { color:var(--wiki-accent-label-color); } table.cargoTable th.headerSort:hover { color:var(--wiki-accent-label-color); text-decoration:underline; } #mw-content-text div.cargoReplacementTableInfo { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); }.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { color:var(--wiki-content-text-color); } table.dataTable tbody tr { background-color:var(--wiki-content-background-color); } table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 { background-color:rgba(var(--wiki-content-background-color--secondary--rgb), 0.75); } table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd, table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); } table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 { background-color:rgba(var(--wiki-content-background-color--rgb), 0.75); } table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { background-color: var(--wiki-content-background-color--secondary); } .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { /* we need this !important to override a built-in one */ color: var(--wiki-content-text-mix-color) !important; } table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td { border-top: 1px solid var(--wiki-content-border-color); } .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { /* we need this !important to override a built-in one */ color: var(--wiki-content-mix-color) !important; border: 1px solid var(--wiki-content-border-color); background-color: var(--wiki-content-background-color); background: linear-gradient(to bottom,var(--wiki-content-background-color) 0%,var(--wiki-content-background-color--secondary) 100%); } div.drilldown-filters-wrapper { background-color: transparent; border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .action-pagevalues tr:nth-of-type(2n) { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); } .action-pagevalues tr:hover { background-image: linear-gradient(rgba(var(--wiki-accent-color--rgb), 0.2), rgba(var(--wiki-accent-color--rgb), 0.2)); } div.specialCargoQuery-extraPane { background: var(--wiki-content-background-color); } div.thumbinner { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .thumbimage { background-color: unset; border: unset; } .oo-ui-panelLayout-framed { border-color:var(--wiki-content-border-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button { background-color: transparent; } .oo-ui-checkboxInputWidget [type="checkbox"] + span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked + span { filter: unset; background-color:rgba(var(--wiki-content-link-color--rgb), 0.05); border-color:rgba(var(--wiki-content-link-color--rgb), 0.75); } .oo-ui-inputWidget-input + .oo-ui-image-invert.oo-ui-icon-check { background-image:none; } .oo-ui-inputWidget-input:checked + .oo-ui-image-invert.oo-ui-icon-check::before { position:absolute; width:100%; height:100%; top:0; left:0; background-image: url(/load.php?modules=oojs-ui-core.icons&image=check&variant=invert&format=rasterized&skin=vector&version=y9f1k); background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3E check %3C/title%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M7 14.2 2.8 10l-1.4 1.4L7 17 19 5l-1.4-1.4z%22/%3E%3C/g%3E%3C/svg%3E"); content:''; pointer-events: none; filter:var(--wiki-icon-general-filter); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover+span { border-color: var(--wiki-content-link-color); filter: unset; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span { background-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:focus+span { box-shadow: none; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active+span { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus+span { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); outline: 1px solid transparent; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span { background-color: var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:focus+span { background-color: rgba(var(--wiki-content-link-color--rgb), 0.5); border-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active + span { background-color: rgba(var(--wiki-content-link-color--rgb), 0.5) } .oo-ui-image-invert.oo-ui-icon-check { background:none; position:relative; } .oo-ui-inputWidget-input:checked + .oo-ui-image-invert.oo-ui-icon-check::before { position:absolute; width:100%; height:100%; top:0; left:0; background-image: url(/load.php?modules=oojs-ui-core.icons&image=check&variant=invert&format=rasterized&skin=vector&version=y9f1k); background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3E check %3C/title%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M7 14.2 2.8 10l-1.4 1.4L7 17 19 5l-1.4-1.4z%22/%3E%3C/g%3E%3C/svg%3E"); content:''; pointer-events: none; filter:var(--wiki-icon-general-filter); } .oo-ui-indicatorElement-indicator { filter: var(--wiki-icon-to-link-filter); } .mw-rcfilters-ui-savedLinksListWidget-placeholder.oo-ui-optionWidget .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:not(.oo-ui-tagItemWidget-fixed) { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:hover { color: var(--wiki-content-text-color--hover); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:focus { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .mw-rcfilters-ui-savedLinksListWidget-menu .mw-rcfilters-ui-savedLinksListItemWidget { color: var(--wiki-content-text-color); padding: 8px 6px; -webkit-transition: color .3s, background-color .3s; transition: color .3s, background-color .3s; } .mw-rcfilters-ui-savedLinksListWidget-menu .mw-rcfilters-ui-savedLinksListItemWidget:hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15); color: var(--wiki-content-link-color); } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined { background-color: transparent; } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-content-border-color); } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle+.mw-rcfilters-ui-table, .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle.mw-rcfilters-ui-filterTagMultiselectWidget-emphasize { background-color: var(--wiki-content-background-color--secondary); } .mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget { border-color: var(--wiki-content-border-color); padding: 0; } .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-savedQueryTitle { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button>.oo-ui-labelElement-label { color: var(--wiki-content-link-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button>.oo-ui-labelElement-label:hover { color: var(--wiki-content-link-color--hover); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button:before { content: "[" } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button:after { content: "]" } .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color); } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-dynamic-color--inverted); } .mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters { color: rgba(var(--wiki-content-text-color--rgb), .6) } .mw-rcfilters-ui-filterMenuSectionOptionWidget { background-color: var(--wiki-content-background-color) } .oo-ui-menuSelectWidget { background-color: var(--wiki-content-background-color--secondary); } .mw-rcfilters-ui-filterMenuSectionOptionWidget-header-title.oo-ui-labelElement-label { color: var(--wiki-content-text-color) } .mw-rcfilters-ui-filterMenuHeaderWidget-header { background-color: var(--wiki-content-background-color); border-bottom-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-filterMenuHeaderWidget-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-itemMenuOptionWidget:not(:last-child):not(.mw-rcfilters-ui-itemMenuOptionWidget-identifier-talk) { border-bottom-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces { border-top-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-title, .mw-rcfilters-ui-itemMenuOptionWidget:hover, .mw-rcfilters-ui-itemMenuOptionWidget:hover .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget:hover .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-link-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span, .mw-rcfilters-ui-itemMenuOptionWidget:hover .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span { border-color: var(--wiki-content-link-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected, .mw-rcfilters-ui-itemMenuOptionWidget:hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15) } .mw-rcfilters-ui-itemMenuOptionWidget-excludeLabel, .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-itemMenuOptionWidget-label-desc { color: rgba(var(--wiki-content-text-color--rgb), .6); } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected:hover, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected):hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-title, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-text-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .mw-rcfilters-ui-itemMenuOptionWidget-label-desc { color: rgba(var(--wiki-content-text-color--rgb), .6) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span { border-color: var(--wiki-content-text-color) } .mw-rcfilters-ui-viewSwitchWidget label.oo-ui-labelWidget { color: rgba(var(--wiki-content-text-color--rgb), .6) } .oo-ui-tagItemWidget.oo-ui-widget-enabled, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color: transparent; color: var(--wiki-content-text-color); border-color:var(--wiki-content-text-mix-color); } .mw-changeslist-legend, .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-rcfilters-ui-menuSelectWidget-footer { background-color: var(--wiki-content-text-mix-color-95); } .mw-rcfilters-ui-filterMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) { background-color: rgba(var(--wiki-body-dynamic-color--rgb), 0.1); } .oo-ui-iconElement-icon.mw-rcfilters-ui-filterItemHighlightButton-circle { filter:unset; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .mw-rcfilters-ui-tagItemWidget-selected.oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); border-color:var(--wiki-content-link-color); } .mw-rcfilters-ui-tagItemWidget.oo-ui-flaggedElement-muted.oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-labelElement-label { color: rgba(var(--wiki-content-text-color--rgb), .76); } .mw-rcfilters-ui-tagItemWidget-popup-content { color: rgba(var(--wiki-content-text-color--rgb), .75); } .oo-ui-popupWidget-anchored-bottom .oo-ui-popupWidget-anchor:before { border-top-color: var(--wiki-content-border-color); } .oo-ui-popupWidget-anchored-bottom .oo-ui-popupWidget-anchor:after { border-top-color: var(--wiki-content-background-color--secondary); } .unpatrolled { color: var(--wiki-alert-color); } .autocomment, .autocomment a, .autocomment a:visited { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } .autocomment, .autocomment a, .autocomment a:visited { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } /* Recent changes filter highlighting */ .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c1, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c1 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c1.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c1.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #1c283f; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c2, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c2 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c2.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c2.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #0f3128; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c3, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c3 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c3.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c3.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #352c10; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c4, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c4 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c4.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c4.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #411d0c; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c5, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c5 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c5.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c5.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #3f0f0f; } .mw-icon-arrow-collapsed, .mw-collapsible-arrow.mw-collapsible-toggle-collapsed { filter:brightness(75%) var(--wiki-icon-general-filter); } /* The below rules fix an error caused by the above rule because the toggles in the edit footer have text and an arrow in the same element, so the text gets inverted when it shouldn't be */ .mw-editfooter-toggler { position:relative; filter:unset; background:none; } .mw-editfooter-toggler::before { position:absolute; left:0; top:0; background-repeat: no-repeat; background-position: left center; width:12px; height:100%; content:''; filter:brightness(75%) var(--wiki-icon-general-filter); } .mw-editfooter-toggler.mw-icon-arrow-collapsed::before { background-image: url(/resources/src/mediawiki.icon/images/arrow-collapsed-ltr.svg?40e9a); } .mw-editfooter-toggler.mw-icon-arrow-expanded::before { background-image: url(/resources/src/mediawiki.icon/images/arrow-expanded.svg?d0685); } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled { background-color: transparent; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { -webkit-transition: border-color 300ms, box-shadow 300ms; transition: border-color 300ms, box-shadow 300ms; background-color: var(--wiki-content-background-color--secondary) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-tagMultiselectWidget-focus .oo-ui-tagMultiselectWidget-handle { box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); outline: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined:hover .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-content-link-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid .oo-ui-tagMultiselectWidget-handle, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid:hover .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagMultiselectWidget-handle { background-color: var(--wiki-content-background-color--secondary); border-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-inputWidget-input { border-top-left-radius: 0; border-top-right-radius: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { border-color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-handle { opacity: 0.5 } .oo-ui-tagMultiselectWidget-handle .oo-ui-tagMultiselectWidget-group > input { color:var(--wiki-content-text-color); } .oo-ui-tagMultiselectWidget .oo-ui-inputWidget-input { color: inherit; background: transparent; font-family: inherit } .oo-ui-textInputWidget .oo-ui-inputWidget-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .oo-ui-dropdownWidget.oo-ui-widget-disabled .oo-ui-dropdownWidget-handle, .oo-ui-textInputWidget.oo-ui-widget-disabled .oo-ui-inputWidget-input, .oo-ui-dropdownWidget.oo-ui-widget-disabled .oo-ui-dropdownWidget-handle { background: var(--wiki-content-text-mix-color-95); color: rgba(var(--wiki-content-text-color--rgb), 0.25); text-shadow:none; border-color:var(--wiki-content-text-mix-color); } .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input::placeholder { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:hover { background-color: var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); } .oo-ui-outlineOptionWidget.oo-ui-optionWidget-selected, .oo-ui-outlineOptionWidget.oo-ui-optionWidget-highlighted { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color); } .oo-ui-bookletLayout-outlinePanel { padding: 7px 0; } .oo-ui-processDialog-content .oo-ui-window-head, .oo-ui-processDialog-content .oo-ui-window-foot, .oo-ui-messageDialog-content > .oo-ui-window-head, .oo-ui-messageDialog-content > .oo-ui-window-foot { outline-color: var(--wiki-content-border-color); } .oo-ui-processDialog-actions-safe .oo-ui-widget-enabled.oo-ui-iconElement:not(.oo-ui-labelElement) > .oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-background-color); border-right-color: var(--wiki-content-border-color); } .oo-ui-messageDialog-title { color: var(--wiki-heading-color); } /* OAuth authorisation dialog */ #mw-mwoauth-authorize-form { color: inherit; } .oo-ui-toolbar-bar, .oo-ui-popupToolGroup-tools, .oo-ui-listToolGroup-tools .oo-ui-tool.oo-ui-widget-enabled:hover { background-color:var(--wiki-content-background-color--secondary); color:var(--wiki-content-text-color); } .oo-ui-toolbar-actions .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover { border-right-color:var(--wiki-content-border-color); } .oo-ui-menuToolGroup-tools .oo-ui-tool.oo-ui-tool-active, .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:active, .oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active > .oo-ui-tool-link, .oo-ui-tool.oo-ui-widget-enabled.oo-ui-popupToolGroup-active > .oo-ui-tool-link, .oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle { background-color: var(--wiki-content-background-color); color: var(--wiki-content-link-color); } .oo-ui-tool.oo-ui-widget-enabled .oo-ui-tool-link { /* we remove the transition here because it causes the hard-coded color to flash briefly */ transition:none; } .oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle:hover { color:var(--wiki-content-link-color); } .oo-ui-popupToolGroup-tools .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title { color:var(--wiki-content-link-color); } .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover, .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.15); } .oo-ui-menuToolGroup, .oo-ui-popupToolGroup-tools { border-color:var(--wiki-content-border-color); } .oo-ui-toolbar-position-top > .oo-ui-toolbar-bar { border-color: var(--wiki-content-border-color); box-shadow: 0 1px 1px 0 rgba(var(--wiki-content-dynamic-color--rgb),0.1); } .oo-ui-barToolGroup-tools.oo-ui-toolGroup-enabled-tools .oo-ui-tool.oo-ui-widget-disabled.oo-ui-flaggedElement-primary > .oo-ui-tool-link, .oo-ui-barToolGroup-tools.oo-ui-toolGroup-disabled-tools .oo-ui-tool.oo-ui-flaggedElement-primary > .oo-ui-tool-link { background-color: var(--wiki-content-text-mix-color); border-color: var(--wiki-content-text-mix-color); } .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link { background-color:var(--wiki-accent-color); color:var(--wiki-accent-label-color); } .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link:hover { background-color:var(--wiki-accent-color--hover); } .oo-ui-buttonElement-frameless>.oo-ui-buttonElement-button, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color) } .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-content-text-color--hover) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-content-text-color--hover) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-destructive > .oo-ui-buttonElement-button{ color: var(--wiki-alert-color) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-alert-color--hover) } .oo-ui-buttonElement-frameless>.oo-ui-buttonElement-button { border: 1px solid transparent } .oo-ui-buttonElement-frameless>button.oo-ui-buttonElement-button { color: inherit } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color--hover); border-color: var(--wiki-accent-color--hover) } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button { background-color: #bf0017; border-color: #bf0017; color: #fff } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: #59000b; border-color: #59000b } .oo-ui-messageWidget.oo-ui-messageWidget-block.oo-ui-flaggedElement-warning { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active>.oo-ui-buttonElement-button { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active>.oo-ui-buttonElement-button { color: var(--wiki-content-link-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover { background-color: transparent; } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-dynamic-color--inverted); } .mw-htmlform-ooui .mw-htmlform-matrix tbody tr:nth-child(2n) td, .mw-htmlform-ooui .mw-htmlform-matrix tbody tr:hover td { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-popupWidget-popup { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color:var(--wiki-content-text-color); } .mw-ui-button { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color: var(--wiki-content-link-color); border-color: var(--wiki-content-border-color); } .mw-ui-button:not(:disabled):visited { color: var(--wiki-content-link-color); } .mw-ui-button:not(:disabled):hover { background-color: var(--wiki-content-text-mix-color-95); border-color: var(--wiki-content-border-color); color: var(--wiki-content-link-color--hover); } .mw-ui-button:not(:disabled):focus { border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-ui-button:not(:disabled):active, .mw-ui-button:not(:disabled).is-on { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-link-color); } .mw-ui-icon-before::before { filter: var(--wiki-icon-to-link-filter); } .oo-ui-windowManager-modal > .oo-ui-dialog > .oo-ui-window-frame { background-color: var(--wiki-content-background-color); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); } .oo-ui-windowManager-modal>.oo-ui-dialog { background-color: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.5); } .oo-ui-windowManager-modal.oo-ui-windowManager-floating > .oo-ui-dialog > .oo-ui-window-frame { border-color:var(--wiki-content-border-color); } .oo-ui-messageDialog-message { color: var(--wiki-content-text-color); } .oo-ui-buttonElement-framed:not(.oo-ui-flaggedElement-primary):not(.oo-ui-buttonElement-active) > .oo-ui-buttonElement-button { color: var(--wiki-content-text-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button { color: var(--wiki-content-link-color); border-color:rgba(var(--wiki-content-link-color--rgb), 0.5); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-link-color--hover); border-color:var(--wiki-content-link-color); box-shadow:inset 0 0 3px var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-pressed > .oo-ui-buttonElement-button { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color--hover); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:focus { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-disabled > .oo-ui-buttonElement-button { background-color: var(--wiki-content-text-mix-color); border-color: var(--wiki-content-text-mix-color); } /* Date picker */ .mw-widget-dateInputWidget-handle { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-widget-dateInputWidget.oo-ui-widget-enabled .mw-widget-dateInputWidget-handle:hover { border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-widget-dateInputWidget.oo-ui-widget-enabled .mw-widget-dateInputWidget-handle > .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget { border-color: var(--wiki-content-border-color); } .mw-widget-dateInputWidget-calendar { background-color: var(--wiki-content-background-color); } .mw-widget-calendarWidget-header .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-day-heading { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } .mw-widget-calendarWidget-day { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-day-additional { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } .mw-widget-calendarWidget-month { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-year { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-item-selected { color: #fff; } .mw-widgets-datetime-calendarWidget:focus { border-color: var(--wiki-content-border-color); box-shadow: none; } .mw-widgets-datetime-calendarWidget-grid { overflow-x: initial; } .mw-widgets-datetime-dateTimeInputWidget-handle { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-widgets-datetime-dateTimeInputWidget.oo-ui-widget-enabled .mw-widgets-datetime-dateTimeInputWidget-handle:hover { border-color: var(--wiki-content-border-color); } .mw-widgets-datetime-dateTimeInputWidget.oo-ui-widget-enabled .mw-widgets-datetime-dateTimeInputWidget-editField:hover { background-color: var(--wiki-content-background-color); } .mw-widgets-datetime-calendarWidget { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); } .mw-widgets-datetime-calendarWidget-grid .mw-widgets-datetime-calendarWidget-cell.mw-widgets-datetime-calendarWidget-extra .oo-ui-buttonElement-button .oo-ui-labelElement-label { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } /* Unpatrolled page creations on Special:NewPages */ .not-patrolled { background-color: rgba(var(--wiki-warning-color--rgb), 0.16); } pre, code, .mw-code { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-templatedata-doc-param-alias { color:var(--wiki-content-text-mix-color); } .mw-highlight, .view-light .mw-highlight { --pygments-background: var(--wiki-content-background-color--secondary); --pygments-err: #db0000; --pygments-c: #3a7575; --pygments-k: #008000; --pygments-o: #666; --pygments-ch: #3a7575; --pygments-cm: #3a7575; --pygments-cp: #986200; --pygments-cpf: #3a7575; --pygments-c1: #3a7575; --pygments-cs: #3a7575; --pygments-gd: #a00000; --pygments-gr: #db0000; --pygments-gh: #000080; --pygments-gi: #008100; --pygments-go: #6e6e6e; --pygments-gp: #000080; --pygments-gu: #800080; --pygments-gt: #04d; --pygments-kc: #008000; --pygments-kd: #008000; --pygments-kn: #008000; --pygments-kp: #008000; --pygments-kr: #008000; --pygments-kt: #b00040; --pygments-m: #666; --pygments-s: #ba2121; --pygments-na: #647421; --pygments-nb: #008000; --pygments-nc: #00f; --pygments-no: #800; --pygments-nd: #a412ff; --pygments-ni: #6d6d6d; --pygments-ne: #c9352e; --pygments-nf: #00f; --pygments-nl: #727200; --pygments-nn: #00f; --pygments-nt: #008000; --pygments-nv: #19177c; --pygments-ow: #a412ff; --pygments-w: #6e6e6e; --pygments-mb: #666; --pygments-mf: #666; --pygments-mh: #666; --pygments-mi: #666; --pygments-mo: #666; --pygments-sa: #ba2121; --pygments-sb: #ba2121; --pygments-sc: #ba2121; --pygments-dl: #ba2121; --pygments-sd: #ba2121; --pygments-s2: #ba2121; --pygments-se: #a55a1e; --pygments-sh: #ba2121; --pygments-si: #af4d74; --pygments-sx: #008000; --pygments-sr: #af4d74; --pygments-s1: #ba2121; --pygments-ss: #19177c; --pygments-bp: #008000; --pygments-fm: #00f; --pygments-vc: #19177c; --pygments-vg: #19177c; --pygments-vi: #19177c; --pygments-vm: #19177c; --pygments-il: #666; } .view-dark .mw-highlight { --pygments-background: var(--wiki-content-background-color--secondary); --pygments-err: #fe4242; --pygments-c: #4b9797; --pygments-k: #00a300; --pygments-o: #898989; --pygments-ch: #4b9797; --pygments-cm: #4b9797; --pygments-cp: #c17d00; --pygments-cpf: #4b9797; --pygments-c1: #4b9797; --pygments-cs: #4b9797; --pygments-gd: #ff3f3f; --pygments-gr: #fe4242; --pygments-gh: #7a7aff; --pygments-gi: #00a000; --pygments-go: #8a8a8a; --pygments-gp: #7a7aff; --pygments-gu: #f500f5; --pygments-gt: #4e84fe; --pygments-kc: #00a300; --pygments-kd: #00a300; --pygments-kn: #00a300; --pygments-kp: #00a300; --pygments-kr: #00a300; --pygments-kt: #fe357e; --pygments-m: #898989; --pygments-s: #e25e5e; --pygments-na: #80932a; --pygments-nb: #00a300; --pygments-nc: #7a7afe; --pygments-no: #ff4040; --pygments-nd: #bf5aff; --pygments-ni: #999; --pygments-ne: #da655f; --pygments-nf: #7a7afe; --pygments-nl: #a0a000; --pygments-nn: #7a7afe; --pygments-nt: #00a300; --pygments-nv: #8381e7; --pygments-ow: #bf5aff; --pygments-w: #bbb; --pygments-mb: #898989; --pygments-mf: #898989; --pygments-mh: #898989; --pygments-mi: #898989; --pygments-mo: #898989; --pygments-sa: #e25e5e; --pygments-sb: #e25e5e; --pygments-sc: #e25e5e; --pygments-dl: #e25e5e; --pygments-sd: #e25e5e; --pygments-s2: #e25e5e; --pygments-se: #d07125; --pygments-sh: #e25e5e; --pygments-si: #c17492; --pygments-sx: #00a300; --pygments-sr: #c17492; --pygments-s1: #e25e5e; --pygments-ss: #8381e7; --pygments-bp: #00a300; --pygments-fm: #7a7afe; --pygments-vc: #8381e7; --pygments-vg: #8381e7; --pygments-vi: #8381e7; --pygments-vm: #8381e7; --pygments-il: #898989; } .mw-highlight .err { border-color: var(--pygments-err) } .mw-highlight .c { color: var(--pygments-c) } .mw-highlight .k { color: var(--pygments-k) } .mw-highlight .o { color: var(--pygments-o) } .mw-highlight .ch { color: var(--pygments-ch) } .mw-highlight .cm { color: var(--pygments-cm) } .mw-highlight .cp { color: var(--pygments-cp) } .mw-highlight .cpf { color: var(--pygments-cpf) } .mw-highlight .c1 { color: var(--pygments-c1) } .mw-highlight .cs { color: var(--pygments-cs) } .mw-highlight .gd { color: var(--pygments-gd) } .mw-highlight .gr { color: var(--pygments-gr) } .mw-highlight .gh { color: var(--pygments-gh) } .mw-highlight .gi { color: var(--pygments-gi) } .mw-highlight .go { color: var(--pygments-go) } .mw-highlight .gp { color: var(--pygments-gp) } .mw-highlight .gu { color: var(--pygments-gu) } .mw-highlight .gt { color: var(--pygments-gt) } .mw-highlight .kc { color: var(--pygments-kc) } .mw-highlight .kd { color: var(--pygments-kd) } .mw-highlight .kn { color: var(--pygments-kn) } .mw-highlight .kp { color: var(--pygments-kp) } .mw-highlight .kr { color: var(--pygments-kr) } .mw-highlight .kt { color: var(--pygments-kt) } .mw-highlight .m { color: var(--pygments-m) } .mw-highlight .s { color: var(--pygments-s) } .mw-highlight .na { color: var(--pygments-na) } .mw-highlight .nb { color: var(--pygments-nb) } .mw-highlight .nc { color: var(--pygments-nc) } .mw-highlight .no { color: var(--pygments-no) } .mw-highlight .nd { color: var(--pygments-nd) } .mw-highlight .ni { color: var(--pygments-ni) } .mw-highlight .ne { color: var(--pygments-ne) } .mw-highlight .nf { color: var(--pygments-nf) } .mw-highlight .nl { color: var(--pygments-nl) } .mw-highlight .nn { color: var(--pygments-nn) } .mw-highlight .nt { color: var(--pygments-nt) } .mw-highlight .nv { color: var(--pygments-nv) } .mw-highlight .ow { color: var(--pygments-ow) } .mw-highlight .w { color: var(--pygments-w) } .mw-highlight .mb { color: var(--pygments-mb) } .mw-highlight .mf { color: var(--pygments-mf) } .mw-highlight .mh { color: var(--pygments-mh) } .mw-highlight .mi { color: var(--pygments-mi) } .mw-highlight .mo { color: var(--pygments-mo) } .mw-highlight .sa { color: var(--pygments-sa) } .mw-highlight .sb { color: var(--pygments-sb) } .mw-highlight .sc { color: var(--pygments-sc) } .mw-highlight .dl { color: var(--pygments-dl) } .mw-highlight .sd { color: var(--pygments-sd) } .mw-highlight .s2 { color: var(--pygments-s2) } .mw-highlight .se { color: var(--pygments-se) } .mw-highlight .sh { color: var(--pygments-sh) } .mw-highlight .si { color: var(--pygments-si) } .mw-highlight .sx { color: var(--pygments-sx) } .mw-highlight .sr { color: var(--pygments-sr) } .mw-highlight .s1 { color: var(--pygments-s1) } .mw-highlight .ss { color: var(--pygments-ss) } .mw-highlight .bp { color: var(--pygments-bp) } .mw-highlight .fm { color: var(--pygments-fm) } .mw-highlight .vc { color: var(--pygments-vc) } .mw-highlight .vg { color: var(--pygments-vg) } .mw-highlight .vi { color: var(--pygments-vi) } .mw-highlight .vm { color: var(--pygments-vm) } .mw-highlight .il { color: var(--pygments-il) } .mw-highlight pre { background: var(--pygments-background) } .mw-content-ltr.mw-highlight-lines pre, .mw-content-ltr.content .mw-highlight-lines pre { padding-left: 3.5em; box-shadow: inset 2.75em 0 0 var(--wiki-content-dynamic-color--inverted); } .mw-highlight .hll { background-color: rgba(var(--wiki-accent-color--rgb), .2) } .mw-apisandbox-toolbar { background: var(--wiki-content-background-color--secondary); top: 35px; } /* special:replacetext */ .ext-replacetext-searchoptions { background-color: transparent; border: 1px solid var(--wiki-content-border-color); } .ext-replacetext-searchoptions .ext-replacetext-divider { border-bottom: 1px solid var(--wiki-content-border-color); } /**/ .view-dark textarea { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .view-dark textarea:focus-visible { outline-color: var(--wiki-content-link-color); outline-style: solid; } /* make math formulas legible on dark theme */ .mwe-math-fallback-image-inline, .mwe-math-fallback-image-display { filter: var(--wiki-icon-general-filter); } /* search bar */ #searchInput { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); box-shadow: none; } #searchInput:focus, #simpleSearch:hover #searchInput, #simpleSearch:hover #searchInput:focus { border-color: var(--wiki-content-link-color); box-shadow: none; } #searchButton { filter: var(--wiki-icon-to-link-filter); } .vector-search-box-input::placeholder { color:var(--wiki-content-text-mix-color); } /* Search suggestions */ .suggestions-results, .suggestions-special { background-color: var(--wiki-content-background-color--secondary); } .suggestions a.mw-searchSuggest-link, .suggestions a.mw-searchSuggest-link:hover, .suggestions a.mw-searchSuggest-link:active, .suggestions a.mw-searchSuggest-link:focus { color: var(--wiki-content-text-color); } .suggestions-result { color: var(--wiki-content-link-color); } .suggestions-result-current { background-color: var(--wiki-content-link-color); color: var(--wiki-content-link-label-color); } .suggestions-special .special-label { color: var(--wiki-content-text-mix-color); } .suggestions-special.suggestions-result-current .special-label { color:var(--wiki-content-link-label-color); } .suggestions-special .special-query { color: var(--wiki-link-label-color); } /* search page */ fieldset#mw-searchoptions { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); border-color: var(--wiki-content-border-color); } #mw-searchoptions .divider { border-color: var(--wiki-content-border-color); } .mw-search-profile-tabs { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); border: 1px solid var(--wiki-content-border-color); margin-top: 1em; } .mw-search-profile-tabs div.search-types ul li.current a { color: var(--wiki-content-text-color); } /* invert the help icon on the helplink */ #mw-indicator-mw-helplink a { background-image: none; } #mw-indicator-mw-helplink a::before { background-image: url(/resources/src/mediawiki.helplink/images/helpNotice.svg?46d34); background-position: left center; background-repeat: no-repeat; display: inline-block; vertical-align: middle; height: 20px; padding-left: 25px; content: ""; } #mw-indicator-mw-helplink a::before { filter: var(--wiki-icon-to-link-filter); } /**/ /* Login/register page */ .mw-number-text { color:var(--wiki-content-text-mix-color); } .mw-body-content .mw-number-text h3 { color:var(--wiki-heading-color); } .mw-number-text.icon-edits, .mw-number-text.icon-pages, .mw-number-text.icon-contributors { position:relative; background:none; } .mw-number-text.icon-edits::before, .mw-number-text.icon-pages::before, .mw-number-text.icon-contributors::before { position:absolute; width:95px; height:100%; left:0; top:0; content:''; filter:brightness(0) var(--wiki-icon-general-filter); } .mw-number-text.icon-edits::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABLCAYAAADnAAD1AAACrUlEQVR4AWL4//8/oH170LEsiKIwXGPbtm0EY9s2g7bdjzh4oVnjyslKVZ3hSu+d5L/c0Xdx/Bt5jjCyAR3QAd9/+DhSW4oeoYmJGQdM4HWjYfQKTXTA8pZFeIgjOmA5Hkd0wDwe6TWa6IAcr4eA5RAdEC0neKWIDoieFcMRRPOAaDJ6+4uITxzwJ+KbmnjdaKkDliISPIv/gcvRxsT7kzgix7MGuBz1ooFyRIq3xOJ64ArUG0EMoMV5RI5nAJDjRV1Go1DIIL7meJKAAngc8Qn/tgoACuCNRtfRJhQyGQLkeJcI3u3oP3GzA5bjjYnwEEE0Acjx+urgEcRNVgFX1sUjdaHF9gA53sW/jScFKIC3SH8hIo5nDXAVwbtA8O6U4+kD6uPpA2rhWQNcXYh3N4HXSfAMAHK8838BTwBQF28hCpKAAnj3SvCsAa4heOdU8NQB5fGUAfXxhAEZ3lmCdz+B18Hx9ABN46kBrv1DeAtQsAZYivdAB08AMMLrJ3hBHU8BkOGdqcyMLcCbj4I1QH08YUCGd0kbTwCQ4MW1oFkR3kM5PAHAdVU8gjhPEk8AkOKRBjN481AwAxjhDRCM4Rq1EzwTgAzvGtoqiicAmMcbjRZI4wkATiP/eVe/4QU0DvXJ4gkAHq9gNEV4cdPRRtQjgycAOA51VkAOoECaiF5J4QkA7iVnuI+vgTcXBauAo1BjBeU0mZuCXlfm2gieOcCN5KzPadH7s9EF1CeJJwD4lKy2BLQM3UFDaFgSTwBwKcE5il6Q1wmeA95KQLGafuI54Ay+I4D2Fm1HY2QwBADPZdCG0EO0Wg5CAHAi6k1ce3E1fdDHAQ8TuG50Ml6F4TngGNQawTWjg2iCPoAG4I5vcG/QVrLDIJMDnvyNBYMDeg7ogA7ogJ4DOqBmnwD4A/itR9A4HwAAAABJRU5ErkJggg==) no-repeat left center; } .mw-number-text.icon-pages::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABLCAYAAADnAAD1AAAByUlEQVR4Ae3XQ6JcQRhH8Rs7mYWT2LZt25rEtpNvicGCOid51lWhX3X/B78F1ClnjUZDHChCDgVUQAVUwF+//zTbaEzwJKuqFQJOwVOYB0fSDege8RnMg8OxA47HhMhGho4YM+BHWGTXMApZP1NxAqdKuIS3DhETC5gT0cEonM+LmH7A8BHHF4zhUMyAr3DKswt4ARvCVQ8RL8FyHIoV8DqyAEbidMCIu2AFDqUbEBiLd4EiroOVcDDdgMBJWI4rNSOugpV0MOWAa2EBIq6HVXAw1YDzYQEiboVVdCDFgLNhASIegtWwP7WAM2AVXC4Z8SKsho+pBZwDCxDxIZ7hGo5iN7ZgG/bjOj61QsB5sAARxyArMA7nUw+4GuYQcaSHv/PrlAPuhDnYh8zR9ZQDnoF1+ooXuI87uIvH+JoT8ES7B1yJxZiGETnbbAHuKqCbkbiqgG5mK6Cb8QqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogG0acAwmVHRLAXschDlQQAVUwKYGXIZTDo7qFnakgAqogP4ooAK+waVh5GpSAROggAqogFKOAiqgAiqg/AUjJ7hc1MT1egAAAABJRU5ErkJggg==) no-repeat left center } .mw-number-text.icon-contributors::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAtCAYAAAA5reyyAAAEMElEQVR4AWJ4/uLFYMJsgHbtIVhzLQqg8G7btm3bfLZt2/abtG3btm3btt19tXuNU5UbnV9VPfj2PCtODh7DaOzHDdzEIQxFG6SERItoilcPq6EOpqNsrAdMiWb4CQPQEx+jMsSH13Ad6tJRtIf4UBkfoyf642c0Q8pwBSyOEYiDWpzHP8gIcelZ3IV6dBENIS5lxD84D7WIwwgUD3XActjk8jTLDnFQAiegPm1FFoiD7JgKdbAJ5UIVMA0WQ10aCnEwHBrQ/xAHQ6EuLULqUAT8EurRkxAbtXEWGtBu5IPYeBLq0RemA6bDUqhHwyE2/oIa8qHho3wp0pkM2AS3oR4dRCmIFWZADRkEsUIpHIR6dBtNTAZ8DepDEhpDLIphL9Q9X0dMYyRBfXjNZMD3oT61hFjUwHmoITtQAGLREurT+yYDvgn1IQ4NwhBwP0pALBogDurDmyYDPgL14QjKQCzK43gYjsAyOAL14RGTAcvhKNSjWUgLsciDzVBDliG9zceJWT53fFlzAYGJUI/+g9iYCjVkBMTGv1CPJkJMB/wM6sEdtILY6Aw15A+IjVa4A/Xgs1C9ym2AujQVkoznkQgN6CpaQAwd7euQynxA4EMkuTz6noAkIxu2QQNaAXHwhMujMAkfhvpz1gSogwEQF/pAA/oV4sIAqIPxkFAHLIwVUBuLkQ/iQkNchPp0BHkhLuTDYocjuVDoAwLNobCKx7MQZ0buxn9CPHgO8VBYNYOEI2AxTIPaWI3SEJdq47rPz1jZIC6VxmqHm17RUAYsjm+wB+rgDH5FZYgL/0M9egjiQmX8hjNQB3vwDYqZClgRn2I8TkM9uoxp+BY1IDayYAnUpd8hyaiBbzEdl6EencZ4fIoKXgPWQ0eswTmoIRexCz9DYFUWh6AOeiEFBFYfYYv7aK6cxRp0RL3kAjbBSsRBQ+gwykBg1SrAF+5qOAUNoTisRBNrwHeQAA2D7hAbLQL+qOoBDYMEvA0RRm3cg4bQIYxBO4iNnFgOdfAoJBntMAaHoSF0D7WtbwOmJGIHBuFtFHJxhx8HdeEEnoI4KIS3MQg7kAg1rI8w9kMN2YQ/8RByQRwUxE844GPvj0B9iAu58BD+NPwdcp8wrkEDOoG3kR3iIC0exhAcgQZwHQvwOfJDXMiOt3ECGtA1EwH3oDLERgoUxisYhv24AzUoEWexCD+iJtJBklEF+yId8A7aQywyoCK+xCJcRSI0TO5iL7qjDXIjBcTiIdwNGnAetmKjR8fQHdYL93tYiSRolDiJzqgLseiOYz62fyvmCcOUJ3EAGuV6oUi0rVD9BBpDtqJstARsj3hojFmBdNEQcDw0Rn0V6YAVcBIao2YjXSQDtoDGsDOoFMmAD0FjXLMHAYN5KJIBW+FBwADq4x40hrWLZMCKOIhEXIsxd3EdDSF+3QeCfPkMAgchOAAAAABJRU5ErkJggg==) no-repeat left center } /**/ /* Multimedia viewer */ .mw-mmv-post-image, .mw-mmv-image-metadata { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-ui-button.mw-ui-progressive:not(:disabled) { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):hover { background-color: var(--wiki-accent-color--hover); } .skin-vector .mw-ui-button.mw-ui-progressive:hover, .skin-vector .mw-ui-button.mw-ui-primary:disabled { box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75) inset, 0 0 5px var(--wiki-content-border-color); border: 2px solid var(--wiki-content-border-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):active, .mw-ui-button.mw-ui-progressive:not(:disabled).is-on { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); } .mw-ui-button.mw-ui-progressive { box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75) inset, 0 0 5px var(--wiki-content-border-color) } .mw-ui-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-ui-input:hover, .mw-ui-input:focus{ background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-ui-input::placeholder { color:var(--wiki-content-text-mix-color); } .mw-mmv-dialog { background-color: var(--wiki-content-background-color--secondary); box-shadow: 0 2px 2px 0 var(--wiki-content-border-color); } .mw-mmv-dialog .mw-mmv-dialog-down-arrow { background-color: var(--wiki-content-background-color--secondary); } .mw-mmv-options-dialog-header { color: var(--wiki-content-text-color); } .mw-mmv-options-text-header, .mw-mmv-options-text-body { color: var(--wiki-content-text-mix-color); } .mw-ui-button.mw-ui-quiet, .mw-ui-button.mw-ui-quiet.mw-ui-progressive, .mw-ui-button.mw-ui-quiet.mw-ui-destructive { color: var(--wiki-content-link-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):focus { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 1), inset 0 0 0 2px var(--wiki-content-link-color); } input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet, input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet.mw-ui-progressive, input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet.mw-ui-destructive, .mw-ui-button.mw-ui-quiet:active, .mw-ui-button.mw-ui-quiet.mw-ui-progressive:active, .mw-ui-button.mw-ui-quiet.mw-ui-destructive:active, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet.mw-ui-progressive, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet.mw-ui-destructive, .mw-ui-button.mw-ui-quiet:focus, .mw-ui-button.mw-ui-quiet.mw-ui-progressive:focus, .mw-ui-button.mw-ui-quiet.mw-ui-destructive:focus { color: var(--wiki-content-text-color); } /**/ /* Echo */ .mw-echo-ui-notificationItemWidget { background-color: var(--wiki-content-background-color); } .mw-echo-ui-notificationItemWidget-unread, .mw-echo-ui-placeholderItemWidget { background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.8); } .mw-echo-ui-notificationItemWidget-unread:hover, .mw-echo-ui-notificationItemWidget:hover, .mw-echo-ui-notificationsInboxWidget-toolbarWrapper { background-color:var(--wiki-content-background-color--secondary); } .mw-echo-ui-menuItemWidget > .oo-ui-buttonElement-button > .oo-ui-labelElement-label, .mw-echo-ui-notificationItemWidget-content-message-body { color:var(--wiki-content-text-mix-color); } .mw-echo-ui-notificationsListWidget:not(:hover) a, #p-personal .mw-echo-ui-notificationsListWidget:not(:hover) a.new, .mw-echo-ui-notificationItemWidget-content-message-header, .mw-echo-ui-notificationItemWidget-content-actions-timestamp{ color:var(--wiki-content-text-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-optionWidget-selected > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-link-label-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-text-color); } .mw-echo-ui-pageNotificationsOptionWidget-label-count { background-color:var(--wiki-content-background-color--secondary); color:var(--wiki-content-text-color); } .mw-echo-ui-notificationItemWidget, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-head, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-footer, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-footer .mw-echo-ui-notificationBadgeButtonPopupWidget-footer-buttons .oo-ui-buttonElement:last-child { border-color:var(--wiki-content-border-color); } .mw-echo-ui-notificationItemWidget:last-child { border-bottom:1px solid var(--wiki-content-border-color); } .mw-echo-ui-crossWikiNotificationItemWidget-group, .mw-echo-ui-bundleNotificationItemWidget-group { background-color:var(--wiki-content-background-color); } .mw-echo-ui-notificationItemWidget-icon{ filter:brightness(0) var(--wiki-icon-to-link-filter); } .mw-echo-ui-toggleReadCircleButtonWidget-circle { background-color:var(--wiki-content-link-color); } .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected { background-color:rgba(var(--wiki-content-link-color--rgb), 0.1); color:var(--wiki-content-link-color); } .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected.mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-highlighted, .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-pressed.mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-highlighted{ background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); color:var(--wiki-content-link-color); } .oo-ui-optionWidget-selected .mw-echo-ui-pageNotificationsOptionWidget-label-count { color:var(--wiki-content-link-color); } @-webkit-keyframes unseen-fadeout-to-unread { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color--secondary); } } @keyframes unseen-fadeout-to-unread { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color--secondary); } } @-webkit-keyframes unseen-fadeout-to-read { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color); } } @keyframes unseen-fadeout-to-read { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color); } } .oo-ui-popupWidget-anchored-top .oo-ui-popupWidget-anchor:before { border-bottom-color: var(--wiki-content-border-color); } .oo-ui-popupWidget-anchored-top .oo-ui-popupWidget-anchor:after { border-bottom-color: var(--wiki-content-background-color--secondary); } .client-js .mw-echo-special-nojs { filter:var(--wiki-icon-general-filter) } /**/ /************************* * End Vector theme fixes * **************************/ /************************ * Theme-based Scribunto * *************************/ #mw-scribunto-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-scribunto-console-fieldset, .mw-scribunto-message, .mw-scribunto-input, .mw-scribunto-error, .mw-scribunto-print, .mw-scribunto-normalOutput { background: transparent; } .mw-scribunto-console-fieldset { color: var(--wiki-content-text-color); } .mw-scribunto-message { color: var(--wiki-content-text-color); } .mw-scribunto-input { color: var(--wiki-content-text-color--hover); } .mw-scribunto-error { color: var(--wiki-alert-color); } .mw-scribunto-print { color: var(--wiki-content-text-color); } .mw-scribunto-normalOutput { color: var(--wiki-content-text-color); } /**************** * End Scribunto * *****************/ /*************************** * Theme-based VisualEditor * ****************************/ .ve-init-mw-progressBarWidget { background-color: var(--wiki-body-background-color); border: 1px solid var(--wiki-content-link-color); box-shadow: 0 1px 1px rgba(var(--wiki-content-dynamic-color--rgb),0.15); } .ve-init-mw-progressBarWidget-bar { background-color:var(--wiki-content-link-color); } div.ve-ce-branchNode { background-color:var(--wiki-content-background-color); border-color:var(--wiki-content-border-color); } .ve-ce-focusableNode-highlight { background: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .ve-ce-surface-highlights-focused .ve-ce-focusableNode-highlights { opacity: 0.25; } .ve-ce-branchNode-blockSlug, .ve-ce-branchNode-newSlug { outline-color: var(--wiki-content-link-color); background-color: rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.75); } .ve-ui-specialCharacterPage-character, .oo-ui-toolbar-position-top .ve-ui-toolbarDialog-position-above, .oo-ui-bookletLayout > .oo-ui-menuLayout-menu, .ve-ui-mwTwoPaneTransclusionDialogLayout > .oo-ui-menuLayout-menu, .ve-ui-specialCharacterPage-character:hover { border-color:var(--wiki-content-border-color); } .ve-ui-specialCharacterPage-character:hover { box-shadow:inset 0 0 1px 1px var(--wiki-content-link-color); } /******************* * End VisualEditor * ********************/ /*********************** * Theme-based msupload * ************************/ #msupload-div, #msupload-list .file { background-color:var(--wiki-content-background-color); border-color:var(--wiki-content-border-color); } #msupload-dropzone { border-color:var(--wiki-content-border-color); color:var(--wiki-content-text-color); } .drop-over { background-color:var(--wiki-accent-color); color:var(--wiki-accent-label-color) !important; } #msupload-bottom #msupload-files { padding-left:0; background: none; } #msupload-bottom #msupload-files::before { display:inline-block; background: url(/extensions/MsUpload/resources/images/msu-upload-icon.png?bdd61) no-repeat 0 0; background-position:left center; height:22px; width:25px; content:''; vertical-align: top; filter:var(--wiki-icon-general-filter); } /*************************** * End theme-based msupload * ****************************/ /***************************** * Theme-based commentstreams * ******************************/ .cs-title-edit-field { border-color:var(--wiki-accent-color); } .cs-edit-box , .cs-expanded .cs-comment-header { background-color: var(--wiki-content-background-color--secondary); border-color:var(--wiki-content-border-color); } .cs-target-comment .cs-comment-header { border-color:var(--wiki-accent-color); } .cs-comment-author a { color: var(--wiki-content-link-color); } .cs-comment-details { color: rgba(var(--wiki-content-text-color--rgb), 0.6); } .cs-comment { border:1px solid var(--wiki-content-border-color); } .cs-comment-body { padding:0 5px; } /********************************* * End theme-based commentstreams * **********************************/ /********************* * Mobile adjustments * **********************/ @media screen and (max-width:720px) { :root { --wiki-content-right-margin: 0px; --wiki-content-padding:0.5rem; --wiki-navigation-right-margin: 1px; --wiki-navigation-left-margin: 0px; --wiki-navigation-top-padding: 5px; --wiki-navigation-bottom-padding:0px; --wiki-navigation-height:2rem; --wiki-navigation-search-height:2.15rem; --wiki-navigation-search-margin:0.5rem; --wiki-logo-height: 80px; --wiki-logo-width: 100%; --wiki-logo-margin: 10px; --wiki-head-height: calc(var(--wiki-logo-height) + (var(--wiki-logo-margin) * 2) + var(--wiki-navigation-height) + var(--wiki-navigation-top-padding) + var(--wiki-navigation-bottom-padding)); --wiki-head-icon-padding: 0.25rem; --wiki-head-icon-size: calc(var(--wiki-navigation-height) - var(--wiki-head-icon-padding) * 2); --wiki-sidebar-background-opacity: var(--wiki-content-background-opacity); --wiki-menu-margin: 0.2rem; --wiki-menu-top-offset: calc(var(--wiki-head-height) + 35px + var(--wiki-navigation-bottom-padding) + var(--wiki-navigation-search-margin)); } #mw-page-base, #mw-head-base { height:var(--wiki-head-height); } #mw-page-base { padding-top:35px; } #mw-head-base { margin-top:calc(var(--wiki-head-height) * -1); } #p-logo, #p-logo a { height: var(--wiki-logo-height); width: var(--wiki-logo-width); } #p-logo { position:absolute; background:none; padding:0; left:0; margin:var(--wiki-logo-margin) 0; transform:none; /* Logo's a part of the sidebar panel, which uses relative positioning for the expandable button. Offset the logo appropriately. */ top: calc(-1 * var(--wiki-menu-top-offset) + 35px); } .mw-wiki-logo { background-size:contain; } #mw-head { left:0; width:100%; top:calc(var(--wiki-head-height) + 35px - var(--wiki-navigation-height)); border:none; border-image:none; } #mw-navigation { position:unset; } #left-navigation, #right-navigation { margin-top: 0; height:var(--wiki-navigation-height); } #right-navigation { margin-right: var(--wiki-navigation-right-margin); } div#left-navigation { margin-left: var(--wiki-navigation-left-margin); } div#right-navigation div#p-search { margin-right: 0; } .vector-menu-tabs-legacy, .vector-menu-dropdown { height:var(--wiki-navigation-height); } .vector-menu-tabs-legacy li a { height:var(--wiki-navigation-height); } #p-cactions { padding-bottom: 0px; } #p-search { position: absolute; left: 50%; transform:translateX(-50%); top: calc(var(--wiki-navigation-height) + var(--wiki-navigation-bottom-padding)); margin-left:0px; z-index: 4 /** above #mw-panel **/; } #simpleSearch { width: calc(100vw - var(--wiki-navigation-right-margin) - var(--wiki-navigation-left-margin)); } .vector-search-box-input { height:var(--wiki-navigation-search-height); } .vector-search-box form { margin:var(--wiki-navigation-search-margin) 0px; } .mw-body { border-left: none; border-right: none; margin-top: 0; padding-top:calc(var(--wiki-content-padding) + var(--wiki-navigation-search-height) + var(--wiki-navigation-bottom-padding) + (var(--wiki-navigation-search-margin) * 2)); } .mw-footer { border-left: none; border-right: none; } #mw-panel { position: unset; width:100%; margin: 0px auto; padding: 0; top: 0; background-position:bottom right, top center; background-size:100% 0.5em, 100% 100%; float:unset; } div#mw-navigation div#mw-panel .portal { box-sizing:border-box; text-align: center } .vector-menu-dropdown .vector-menu-content { right: 0; left: unset; } #mw-panel .vector-menu-portal { border-left-width:0; border-right-width:0; } table.wikitable, table.responsive-table { display: block; overflow-x: scroll; } /* disable float on RecentChanges legend */ .mw-changeslist-legend { float: none; margin: 0 auto; } /* advanced search options */ #mw-searchoptions table { float: none; } #mw-searchoptions table td { display: block; } /* popup when clicking the download button in multimediaviewer */ .mw-mmv-dialog { width: unset; } /* turn math elements into scroll blocks unless they're an immediate child of a span */ :not(span)>.mwe-math-element { display: block; overflow-x: auto; } /* Expandable mobile navigation panel */ body.has-vector-mobile-menu #mw-panel { position: absolute; top: var(--wiki-menu-top-offset); z-index: 3; } body.has-vector-mobile-menu #mw-panel .mobile-nav-toggle { position: relative; z-index: 5; display: block; appearance: none; border: 1px solid var(--wiki-content-border-color); margin-left: var(--wiki-navigation-search-margin); margin-bottom: 2px; background-image: var(--wiki-content-background-color--secondary); } body.has-vector-mobile-menu #mw-panel .vector-menu-portal { display: none; } body.has-vector-mobile-menu #mw-panel .mobile-nav-toggle.nav--expanded ~ .vector-menu-portal { display: block; } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal { text-align: left; font-size: 110%; border-left-width: 1px; border-right-width: 1px; margin-inline: calc(var(--wiki-navigation-left-margin) + var(--wiki-menu-margin)); } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal + .vector-menu-portal { border-top: 0; } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal:not(:last-child) { border-bottom: 0; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list { display: flex; flex-wrap: wrap; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list a { display: block; padding: 0.2rem 0.5rem; border: 1px solid transparent; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list a:hover { border-color: var(--wiki-content-link-color); } body.has-vector-mobile-menu #mw-panel #p-navigation-label { display: block; } .mobile-nav-toggle { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M1 3v2h18V3zm0 8h18V9H1zm0 6h18v-2H1z'/%3E%3C/svg%3E%0A"); } /* Search adjustments for the expandable menu */ body.has-vector-mobile-menu #p-search { /* reposition to the right when mobile sidebar menu is active */ left: calc(var(--wiki-navigation-search-margin) * 3 + var(--wiki-head-icon-size) + var(--wiki-head-icon-padding)); right: calc(var(--wiki-navigation-right-margin) + var(--wiki-navigation-search-margin)); transform: none; } body.has-vector-mobile-menu #simpleSearch { width: 100%; margin: 0 auto; } /* icon navbar tabs + expandable nav panel icon */ #mw-head { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg fill='none' height='24' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none' stroke='none'/%3E%3Cpath d='M4 4l4 16l4 -14l4 14l4 -16'/%3E%3C/svg%3E"); } #mw-head .vector-menu-tabs .mw-list-item a, #mw-head .vector-menu-dropdown .vector-menu-heading, #mw-panel .mobile-nav-toggle { line-height:var(--wiki-head-icon-size); width: var(--wiki-head-icon-size); /* same as line height */ height: var(--wiki-head-icon-size); box-sizing: content-box; padding: var(--wiki-head-icon-padding); color: transparent; /**<< for watch/unwatch, the text of <a> will be plain 'watch'/'unwatch' without <span> after clicking. **/ } #mw-head .vector-menu-tabs .mw-list-item a::before, #mw-head .vector-menu-dropdown .vector-menu-heading::before, #mw-panel .mobile-nav-toggle::before { content: ""; display: block; position: unset; background-image: none; width: var(--wiki-head-icon-size); height: var(--wiki-head-icon-size); margin: 0; --mask: var(--icon) no-repeat; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-position: center center; mask-position: center center; background-color: var(--wiki-navigation-text-color); } #mw-head .vector-menu-tabs .mw-list-item a:hover::before, #mw-head .vector-menu-dropdown .vector-menu-heading:hover::before, #mw-panel .mobile-nav-toggle:hover::before, #mw-panel .mobile-nav-toggle.nav--expanded::before { background-color: var(--wiki-navigation-selected-text-color); } #mw-head .vector-menu-tabs .mw-list-item a span, #mw-head .vector-menu-dropdown .vector-menu-heading span { display: none; } #mw-head .vector-menu-dropdown .vector-menu-heading::after { display: none; } #ca-edit { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='m16.77 8 1.94-2a1 1 0 0 0 0-1.41l-3.34-3.3a1 1 0 0 0-1.41 0L12 3.23zM1 14.25V19h4.75l9.96-9.96-4.75-4.75z'/%3E%3C/svg%3E%0A"); } #ca-view, #ca-view-foreign { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 14.5a4.5 4.5 0 1 1 4.5-4.5 4.5 4.5 0 0 1-4.5 4.5M10 3C3 3 0 10 0 10s3 7 10 7 10-7 10-7-3-7-10-7'/%3E%3Ccircle cx='10' cy='10' r='2.5'/%3E%3C/svg%3E"); } #left-navigation li[id^=ca-nstab-] { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E article %3C/title%3E%3Cpath d='M5 1a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 3h5v1H5zm0 2h5v1H5zm0 2h5v1H5zm10 7H5v-1h10zm0-2H5v-1h10zm0-2H5v-1h10zm0-2h-4V4h4z'/%3E%3C/svg%3E%0A"); } #ca-history { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M9 6v5h.06l2.48 2.47 1.41-1.41L11 10.11V6z'/%3E%3Cpath d='M10 1a9 9 0 0 0-7.85 13.35L.5 16H6v-5.5l-2.38 2.38A7 7 0 1 1 10 17v2a9 9 0 0 0 0-18'/%3E%3C/svg%3E%0A"); } #ca-talk { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpath d='M26,12H24V6a3,3,0,0,0-3-3H6A3,3,0,0,0,3,6V24.41l5.12-5.12A1.05,1.05,0,0,1,8.83,19H12v3a3,3,0,0,0,3,3h8.17a1.05,1.05,0,0,1,.71.29L29,30.41V15A3,3,0,0,0,26,12ZM12,15v2H8.83a3,3,0,0,0-2.12.88L5,19.59V6A1,1,0,0,1,6,5H21a1,1,0,0,1,1,1v6H15A3,3,0,0,0,12,15ZM27,25.59l-1.71-1.71A3,3,0,0,0,23.17,23H15a1,1,0,0,1-1-1V15a1,1,0,0,1,1-1H26a1,1,0,0,1,1,1Z'/%3E%3C/g%3E%3C/svg%3E"); } #t-contributions { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg enable-background='new 0 0 32 32' id='Stock_cut' version='1.1' viewBox='0 0 32 32' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdesc/%3E%3Cpath d='M27,12V5h-7v0 c0-2.209-1.791-4-4-4h0c-2.209,0-4,1.791-4,4v0H1v7h0c2.209,0,4,1.791,4,4v0c0,2.209-1.791,4-4,4h0v11h11v0c0-2.209,1.791-4,4-4h0 c2.209,0,4,1.791,4,4v0h7V20h0c2.209,0,4-1.791,4-4v0C31,13.791,29.209,12,27,12L27,12z' fill='none' stroke='%23000000' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E"); } #ca-addsection { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpolygon points='29 15 17 15 17 3 15 3 15 15 3 15 3 17 15 17 15 28 17 28 17 17 29 17 29 15'/%3E%3C/g%3E%3C/svg%3E"); } #ca-viewsource { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath class='heroicon-ui' d='M20.59 12l-3.3-3.3a1 1 0 1 1 1.42-1.4l4 4a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.42-1.4l3.3-3.3zM3.4 12l3.3 3.3a1 1 0 0 1-1.42 1.4l-4-4a1 1 0 0 1 0-1.4l4-4a1 1 0 0 1 1.42 1.4L3.4 12zm7.56 8.24a1 1 0 0 1-1.94-.48l4-16a1 1 0 1 1 1.94.48l-4 16z'/%3E%3C/svg%3E"); } #p-variants { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpath d='M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,13a24.28,24.28,0,0,0-.41-3.62c2.19.91,3.75,2.19,4.25,3.62Zm-2,0H17V10a20.9,20.9,0,0,1,4.34.63A20.26,20.26,0,0,1,22,15ZM17,8V4.19c1.43.5,2.71,2.06,3.62,4.25A24.28,24.28,0,0,0,17,8ZM15,4.19V8a24.28,24.28,0,0,0-3.62.41C12.29,6.25,13.57,4.69,15,4.19ZM15,10v5H10a20.26,20.26,0,0,1,.63-4.34A20.9,20.9,0,0,1,15,10ZM8,15H4.19c.5-1.43,2.06-2.71,4.25-3.62A24.28,24.28,0,0,0,8,15Zm0,2a24.28,24.28,0,0,0,.41,3.62C6.25,19.71,4.69,18.43,4.19,17Zm2,0h5v5a20.9,20.9,0,0,1-4.34-.63A20.26,20.26,0,0,1,10,17Zm5,7v3.84c-1.43-.5-2.71-2.06-3.62-4.25A24.28,24.28,0,0,0,15,24Zm2,3.84V24a24.28,24.28,0,0,0,3.62-.41C19.71,25.75,18.43,27.31,17,27.81ZM17,22V17h5a20.26,20.26,0,0,1-.63,4.34A20.9,20.9,0,0,1,17,22Zm7-5h3.84c-.5,1.43-2.06,2.71-4.25,3.62A24.28,24.28,0,0,0,24,17Zm2.87-6.12A15.11,15.11,0,0,0,23,9a15.11,15.11,0,0,0-1.85-3.87A12.12,12.12,0,0,1,26.84,10.88Zm-16-5.72A15.11,15.11,0,0,0,9,9a15.11,15.11,0,0,0-3.87,1.85A12.12,12.12,0,0,1,10.88,5.16Zm-5.72,16A15.11,15.11,0,0,0,9,23a15.11,15.11,0,0,0,1.85,3.87A12.12,12.12,0,0,1,5.16,21.12Zm16,5.72A15.11,15.11,0,0,0,23,23a15.11,15.11,0,0,0,3.87-1.85A12.12,12.12,0,0,1,21.12,26.84Z'/%3E%3C/g%3E%3C/svg%3E"); } #p-cactions { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='3' cy='10' r='2'/%3E%3Ccircle cx='17' cy='10' r='2'/%3E%3C/svg%3E%0A"); } #ca-watch { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M20 7h-7L10 .5 7 7H0l5.46 5.47-1.64 7 6.18-3.7 6.18 3.73-1.63-7zm-10 6.9-3.76 2.27 1-4.28L3.5 8.5h4.61L10 4.6l1.9 3.9h4.6l-3.73 3.4 1 4.28z'/%3E%3C/svg%3E%0A"); } #ca-unwatch { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' id='Outlined'%3E%3Cg style='fill:%23000000;fill-opacity:1' id='Fill'%3E%3Cpath style='fill:%23000000;fill-opacity:1' id='path1380' d='M 28.61,11.67 H 20 L 17.34,3.47 C 16.920093,2.1973942 15.119907,2.1973942 14.7,3.47 L 12,11.67 H 3.39 c -1.3409796,0.0031 -1.900508,1.71581 -0.82,2.51 l 7,5.07 -2.68,8.21 C 6.5980433,28.35747 7.2662365,29.278767 8.21,29.28 8.4953889,29.267666 8.7705436,29.170143 9,29 l 7,-5.07 7,5.07 c 0.236205,0.170386 0.518805,0.264586 0.81,0.27 0.943763,-0.0012 1.611957,-0.92253 1.32,-1.82 l -2.66,-8.21 7,-5.07 c 1.075277,-0.810084 0.486081,-2.522863 -0.86,-2.5 z' /%3E%3C/g%3E%3C/svg%3E"); } .vector-menu-tabs #ca-watch.icon a:hover::before, .vector-menu-tabs #ca-unwatch.icon a:hover::before { background-image:none; } /* RecentChanges - prevent overflow on long summaries */ .client-js .mw-changeslist ul, .client-js .mw-changeslist table.mw-enhanced-rc { margin-left:0; } .mw-changeslist-line-inner-comment, .mw-changeslist-line .comment { font-size:0.9em; word-break:break-all; } .mw-userlink { overflow-wrap:anywhere; } } /* Hide the expandable navigation button for desktop users */ .mobile-nav-toggle { display: none; } /************* * End mobile * **************/ e711f347cd2c5b691adbcf5c50619bee156dd914 MediaWiki:Vector.js 8 22 23 2024-05-28T15:01:53Z RheingoldRiver 2743 Adding default set of pages javascript text/javascript /* All JavaScript here will be loaded for users of the Vector skin */ /*** Mobile navigation toggle button ***/ $( function () { var mobileSidebarButton = document.createElement( 'button' ); mobileSidebarButton.className = 'mobile-nav-toggle'; mobileSidebarButton.addEventListener( 'click', function () { mobileSidebarButton.classList.toggle( 'nav--expanded' ); } ); document.body.classList.add( 'has-vector-mobile-menu' ); document.getElementById( 'mw-panel' ).prepend( mobileSidebarButton ); } ); /*** End mobile navigation toggle button ***/ fe358e2ae21cc8ac3ac603bdc0df2ff4a2d437b5 Template:!! 10 23 24 2024-05-28T15:01:54Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki ||<noinclude>{{documentation}}</noinclude> 02fb31115eef5c15d6612ac334bf5a5d83155c0a Template:!!/doc 10 24 25 2024-05-28T15:01:56Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:!( 10 25 26 2024-05-28T15:01:57Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [<noinclude> {{documentation}}</noinclude> 1b058774deae9a7e511a0486a04647d6a3b9af62 Template:!(( 10 26 27 2024-05-28T15:01:58Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[<noinclude> {{documentation}}</noinclude> a331374acf15177afbb3ffc0ec7bd5ada14c582e Template:!((/doc 10 27 28 2024-05-28T15:01:58Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:!(/doc 10 28 29 2024-05-28T15:01:59Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:!) 10 29 30 2024-05-28T15:02:01Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki |}<noinclude>{{documentation}}</noinclude> b2debea163716e114d1ea46e65a63d7a1ae84bc0 Template:!)/doc 10 30 31 2024-05-28T15:02:02Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:!- 10 31 32 2024-05-28T15:02:03Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki |-<noinclude>{{documentation}}</noinclude> 636f9e440c24f4a3fe28b49cebd1808c3de8a814 Template:!-/doc 10 32 33 2024-05-28T15:02:04Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:( 10 33 34 2024-05-28T15:02:05Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {<noinclude> {{documentation}}</noinclude> 490a0c9c85eff213addd7272fe40f8627a637c75 Template:(! 10 34 35 2024-05-28T15:02:06Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {|<noinclude>{{documentation}}</noinclude> 86e51fe1f06ae532410029eb39fa936d68880bc8 Template:(!/doc 10 35 36 2024-05-28T15:03:08Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:(( 10 36 37 2024-05-28T15:03:09Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{<noinclude>{{documentation}}</noinclude> a506ba66cf7c806baae7faecb221b3a946721f6a Template:((( 10 37 38 2024-05-28T15:03:10Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{{<noinclude> {{documentation}}</noinclude> fa33084b57c1f33c82290de279827b973ab2fba8 Template:(((/doc 10 38 39 2024-05-28T15:03:11Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:((/doc 10 39 40 2024-05-28T15:03:12Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {| class="wikitable" style="text-align:center" |- ! scope="col" style="width:7.0em;" | {{no wrap|Template call}}<br>{{normal|('''m''' for magic word)}} ! scope="col" style="width:5.75em;" | {{no wrap|Output}}&nbsp;{{normal|(delayed interpretation as wikimarkup)}} ! scope="col" style="width:9.0em;" | {{no wrap|HTML alternative}} {{normal|(never interpreted as wikimarkup)}} ! Why you might want to use this |- style="vertical-align:top" | <code><nowiki>{{!}}</nowiki></code> '''(m)''' | <nowiki>|</nowiki> | &amp;#124; or {{tl|pipe}} | Displaying pipe characters inside of a parser function |- style="vertical-align:top" | <code><nowiki>{{=}}</nowiki></code> '''(m)''' | <nowiki>=</nowiki> | &amp;#61; | Displaying equal signs inside of unnamed parameters (e.g. <code><nowiki>{{MyTemplate|1+1=2}}</nowiki></code> will assign <code>2</code> to <code><nowiki>{{{1+1|}}}</nowiki></code>; <code><nowiki>{{MyTemplate|1+1{{=}}2}}</nowiki></code> will do what you want) |- style="vertical-align:top" | {{tlx|!!}} | <nowiki>||</nowiki> | &amp;#124;&amp;#124; | Displaying a break between two table cells inside of a parser function |- style="vertical-align:top" | {{tlx|!(}} | {{!(}} | &amp;#91; | Displaying a bracket inside of an external link |- style="vertical-align:top" | {{tlx|)!}} | {{)!}} | &amp;#93; | Displaying a bracket inside of an external link |- style="vertical-align:top" | {{tlx|!((}} | {{!((}} | &amp;#91;&amp;#91; | Displaying a bracket inside of a link |- style="vertical-align:top" | {{tlx|))!}} | {{))!}} | &amp;#93;&amp;#93; | Displaying a bracket inside of a link |- style="vertical-align:top" | {{tlx|(}} | {{(}} | &amp;#123; | Escaping a single brace immediately next to a template or parser function to avoid turning it into a parameter |- style="vertical-align:top" | {{tlx|)}} | {{)}} | &amp;#125; | Escaping a single brace immediately next to a template or parser function to avoid turning it into a parameter |- style="vertical-align:top" | {{tlx|((}} | {{((}} | &amp;#123;&amp;#123; | Displaying open braces for a template without actually transcluding that template |- style="vertical-align:top" | {{tlx|))}} | {{))}} | &amp;#125;&amp;#125; | Displaying closed braces for a template without actually transcluding that template |- style="vertical-align:top" | {{tlx|(((}} | {{(((}} | &amp;#123;&amp;#123;&amp;#123; | Displaying a template parameter's open curly braces without actually using that variable |- style="vertical-align:top" | {{tlx|)))}} | {{)))}} | &amp;#125;&amp;#125;&amp;#125; | Displaying a template parameter's closed curly braces without actually using that variable |- style="vertical-align:top" | {{tlx|(!}} | <nowiki>{|</nowiki> | &amp;#123;&amp;#124; | Starting a table inside of a parser function |- style="vertical-align:top" | {{tlx|!-}} | <nowiki>|-</nowiki> | &amp;#124;&amp;#45; | Starting a new table row inside of a parser function |- style="vertical-align:top" | {{tlx|!)}} | <nowiki>|}</nowiki> | &amp;#124;&amp;#125; | Closing a table inside of a parser function |}<includeonly> [[Category:Formatting templates]] </includeonly> <noinclude>[[Category:Template documentation]]</noinclude> 1bdc95eb92ba36093f841fc832035a79501db2cb Template:(/doc 10 40 41 2024-05-28T15:03:13Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:) 10 41 42 2024-05-28T15:03:14Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki ]<noinclude> {{documentation}}</noinclude> 016897dfd1af3b146bed2b47e7aa58c0bbf6f23d Template:)! 10 42 43 2024-05-28T15:03:15Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki ]<noinclude> {{documentation}}</noinclude> 016897dfd1af3b146bed2b47e7aa58c0bbf6f23d Template:)!/doc 10 43 44 2024-05-28T15:03:16Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:)) 10 44 45 2024-05-28T15:03:17Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki }}<noinclude> {{documentation}} </noinclude> 85ca77d4d6ff71d8e6396ebd798f87fa7f45dc02 Template:))! 10 45 46 2024-05-28T15:03:18Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki ]]<noinclude> {{documentation}}</noinclude> 3d84066ce45d0c1fca0bb04608a4e73c6ea54324 Template:))!/doc 10 46 47 2024-05-28T15:03:19Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:))) 10 47 48 2024-05-28T15:03:20Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki }}}<noinclude> {{documentation}}</noinclude> 585d94f6fe636b77087dc0d06bfbe6cb69b29987 Template:)))/doc 10 48 49 2024-05-28T15:03:21Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:))/doc 10 49 50 2024-05-28T15:03:22Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:)/doc 10 50 51 2024-05-28T15:03:23Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:* 10 51 52 2024-05-28T15:03:24Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki &nbsp;&bull;&nbsp;<noinclude> {{doc}} [[Category:Formatting templates]] </noinclude> 81a7f0051da7b8f4a0548d91c5eb429a974fac91 Template:*/doc 10 52 53 2024-05-28T15:03:25Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki This is the '''bullet''' template; it looks like this: [&nbsp;&bull;&nbsp;] It works similarly to the HTML markup sequence: [<code>'''&amp;nbsp;&amp;bull;&amp;nbsp;'''</code>], that is, a non-breaking space, a bullet and a non-breaking space. This template is used when you want a larger bullet than a bold middot ['''&middot;'''], but something smaller than an en dash [&ndash;]. <noinclude>[[Category:Template documentation]]</noinclude> ea04fe63a10dc333ed9c48bfc397debb11682f1e Template:Ambox 10 53 54 2024-05-28T15:03:26Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- --><div class="ambox {{{class|}}} {{#ifeq:{{lc:{{{tiny|}}}}}|yes|tiny}}"<!-- --> style="--ambox-color: {{{color|}}};"><!-- --><div class="ambox-icon">[[File:{{{icon|Ambox banner content.svg}}}{{!}}{{#ifeq:{{lc:{{{tiny|}}}}}|yes|48x20px|48x48px}}|alt=]]</div><!-- --><div class="ambox-content"><!-- start ambox content -->{{#if: {{{title|}}} | <p class="ambox-title">{{{title}}}</p> }}<!-- --><p class="ambox-text">{{{message|No text provided.}}}{{#if: {{{date|}}} |<nowiki> </nowiki>(Message added: {{{date}}}) }}</p><!-- --></div><!-- end ambox content --></div><!-- end ambox --></includeonly><noinclude> {{doc}} [[Category:Notice templates]]</noinclude> 8a8451e2f1d9edc664e53261eba3ce4f140d1e28 Template:Ambox/doc 10 54 55 2024-05-28T15:03:26Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki == Summary == {{#ifeq:{{ROOTPAGENAME}}|Ambox|"Ambox" is an abbreviation for '''A'''rticle '''m'''essage '''box'''. You can use amboxes in articles to indicate something important about the current page, often in the header.| This '''message template''' is an [[Template:Ambox|article message box]], or '''ambox'''. The documentation below discusses how to use each ambox provided by the wiki. }} == Premade amboxes == === Problem notice amboxes === These amboxes are used temporarily to notify other editors and visitors about a problem with an article. These amboxes support the following parameters: * <code>|tiny=</code>: If set to <code>yes</code>, the box will have less padding and the icon will be much smaller than default. * <code>|class=</code>: Any additional CSS classes to add to the ambox container element. * <code>|date=</code>: The date the ambox was added to the page. * <code>|nocat=</code>: If set to <code>yes</code>, no category will be added to the page. Use this only when creating documentation. '''Note:''' Premade amboxes need the base {{tl|Ambox}} template to work. {| class="wikitable" ! Code !! Result |- | {{tl|Cleanup}} || {{Cleanup|nocat=yes}} |- | {{tl|Delete}} || {{Delete|nocat=yes}} |- | <code><nowiki>{{</nowiki>[[Template:Merge|Merge]]|Example<nowiki>}}</nowiki></code> || {{Merge|Template:Ambox{{!}}Example|nocat=yes}} |- | <code><nowiki>{{</nowiki>[[Template:Move|Move]]|Example<nowiki>}}</nowiki></code> || {{Move|Template:Ambox{{!}}Example|nocat=yes}} |- | <code><nowiki>{{</nowiki>[[Template:Split|Split]]|Example<nowiki>}}</nowiki></code><br/><br/><code><nowiki>{{</nowiki>[[Template:Split|Split]]|Example 1|Example 2|Example 3<nowiki>}}</nowiki></code> || {{Split|Template:Ambox{{!}}Example|nocat=yes}} {{Split|Template:Ambox{{!}}Example 1|Template:Ambox{{!}}Example 2|Template:Ambox{{!}}Example 3|nocat=yes}} |- | {{tl|Stub}} || {{Stub|nocat=yes}} |- |} === Informational amboxes === These amboxes are intended as permanent fixtures to a page, to notify visitors about some piece of information relevant to the page. These amboxes support the following parameters in addition to any listed: * <code>|tiny=</code>, if set to <code>Yes</code> the image will be much smaller than default * <code>|class=</code>, any additional classes to add to the ambox container {| class="wikitable" ! Code !! Additional parameters !! Result |- | {{tl|Spoiler warning}} || || {{Spoiler warning|nocat=yes}} |- | {{tl|No direct use}} || || {{No direct use|nocat=yes}} |- | {{tl|Uses Lua}} || <code><nowiki>|1=</nowiki></code>, a comma-separated list of modules used || {{Uses Lua|nocat=yes}} |} === Optional parameters === You can use optional parameters to further customize a premade ambox. The example below is using <code>tiny=yes</code> and <code>date=01/01/2021</code>. {{Cleanup|tiny=yes|date=01/01/2021|nocat=yes}} == Creating a custom ambox == You can create additional ambox templates as needed using the following parameters: <pre> {{Ambox | color = The left border color. | icon = The icon image to be displayed. | title = The optional title. | message = The explanation text displayed. | tiny = If you want the tiny version of the ambox, fill the parameter with "yes". | date = An optional date of creation for the message. | class = An optional CSS class for the ambox. }} </pre> == Dependencies == For this template to work properly, you need the following: * <code>.ambox</code> and any related classes, found in [[MediaWiki:Common.css]]. <includeonly>[[Category:Notice templates]]</includeonly> __NOTOC__ <noinclude>[[Category:Template documentation]]</noinclude> 6fced5813eb1133d8fab2dc8b7e884c513299eaf Template:Anchor 10 55 56 2024-05-28T15:03:28Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- --><span id="{{{1}}}"></span><!-- --></includeonly><!-- --><noinclude>{{doc}} [[Category:Navigation templates]]</noinclude> 08ccba46722925866447768d344bf540b0b55e79 Template:Anchor/doc 10 56 57 2024-05-28T15:03:29Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki == Summary == This template can be used to insert an invisible anchor (reference points) into a page that can later be used by internal wiki links. == Usage == To create a custom anchor, use <code><nowiki>{{Anchor|Anchor Name}}</nowiki></code> anywhere in the page. For example, if you create the anchor <code><nowiki>{{Anchor|Example Anchor}}</nowiki></code> in the page <code><nowiki>[[Example]]</nowiki></code>, you can access it through the internal link <code><nowiki>[[Example#Example Anchor]]</nowiki></code>. Remember that you can create a [[support:Redirect|redirect]] to this template so that you can call it more easily, such as with <code><nowiki>{{a|Anchor Name}}</nowiki></code>. <noinclude>[[Category:Template documentation]]</noinclude> 4b0ddb50416a354db262e62617d9b45056f4d526 Template:Character icon 10 57 58 2024-05-28T15:03:30Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Link icon|{{{1|}}}|{{{2|}}}|type=Character}}</includeonly><noinclude>{{documentation}}[[Category:Formatting templates]]</noinclude> 24bad84fd5dea93cab210dfd592fda86af09eb87 Template:Character icon/doc 10 58 59 2024-05-28T15:03:31Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki == Summary == <templatedata> { "params": { "1": { "aliases": [ "page" ], "label": "Page Name", "description": "The name for the target page.", "example": "Page Name", "type": "wiki-page-name", "required": true }, "2": { "aliases": [ "label" ], "label": "Link Label", "description": "The text to the be displayed on the link icon's label.", "example": "Alternative Page Name", "type": "line" } }, "description": "Use this template to display an icon next to a page link.\n\nThis template assumes that each page has an icon uploaded at a specific location, namely \"File:Page Name (Character).png\".", "format": "inline" } </templatedata> == Examples == For the examples below, <code><nowiki>File:Invisible Boy (Character).png</nowiki></code> was used as the icon for a page called <code>Invisible Boy</code>. {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{Character icon|Invisible Boy}}</nowiki></code> || {{Character icon|Invisible Boy}} |- | <code><nowiki>{{Character icon|Invisible Boy|The Invisible Boy}}</nowiki></code> || {{Character icon|Invisible Boy|The Invisible Boy}} |- | <code><nowiki>{{Character icon|Invisible Boy|notext}}</nowiki></code> || {{Character icon|Invisible Boy|notext}} |- | <code><nowiki>{{Character icon|Missing Boy}}</nowiki></code> (Missing Page Icon) || {{Character icon|Missing Boy}} |} == Dependencies== For this template to work properly, you need the following: * The base {{tl|Link icon}} template. * The <code>.link-icon</code> class and any related classes, found in [[MediaWiki:Common.css]]. 0999a706143c16f5ed970816e7825239cfce9547 Template:Cleanup 10 59 60 2024-05-28T15:03:32Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Ambox | color = gold | icon = Cleanup.svg | message = This page does not meet '''{{SITENAME}}''''s page quality standards. You can [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit it] to help fixing grammar, formatting, or code issues. | tiny = {{{tiny|}}} | class = {{{class|}}} | date = {{{date|}}} }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Pages in need of improvement]]}}</includeonly><!-- --><noinclude>{{Cleanup|nocat=yes}} {{doc|Template:Ambox/doc}}</noinclude> 150c056a9c89e3cf148e7243f5bf27c87d43600a Template:Cleanup/doc 10 60 61 2024-05-28T15:03:33Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Template:Clear 10 61 62 2024-05-28T15:03:34Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <div style="clear:{{{1|both}}};" class={{{class|}}}></div><noinclude> {{documentation}} </noinclude> 5b24b9fd5cc166a8c486e2422d5df465206ed39c Template:Delete 10 62 63 2024-05-28T15:03:35Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Ambox | color = grey | icon = Delete.svg | title = Candidate for Deletion | message = This page lacks relevance for '''{{SITENAME}}''' and is a candidate for '''deletion'''. | tiny = {{{tiny|}}} | class = {{{class|}}} | date = {{{date|}}} }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Candidates for deletion]]}}</includeonly><!-- --><noinclude>{{Delete|nocat=yes}} {{doc|Template:Ambox/doc}}</noinclude> 6c827de94518d7f5f1635b13425be0d0fb4078da Template:Delete/doc 10 63 64 2024-05-28T15:03:36Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Template:Disambiguation 10 64 65 2024-05-28T15:03:37Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- -->{{#vardefine:topic|<!-- start vd -->{{#if:{{{topic|}}} | {{{topic}}} | {{PAGENAME}} }}<!-- end if -->}}<!-- end vd -->{{#vardefine:disambig|<!-- start vd -->{{#if:{{{1|}}}<!-- start custom disambig if -->|{{{1}}}<!-- start label if -->{{#if:{{{2|}}} | {{!}}{{{2}}} }}<!-- end label if -->|{{#var:topic}} (disambiguation)<!-- else; use regular disambig -->}}<!-- end custom disambig if -->}}<!-- end vd -->{{Hatnote|<!-- -->This page is about '''{{#var:topic}}'''. For other uses, see [[{{#var:disambig}}]].<!-- -->|icon=Disambig.svg<!-- -->}}<!-- --></includeonly><!-- --><noinclude>{{doc}}[[Category:Hatnote templates]]</noinclude> c4c62e7a1876492eb970ea182cf4ac0bcad97913 Template:Disambiguation/doc 10 65 66 2024-05-28T15:03:38Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <templatedata> { "params": { "1": { "label": "Disambiguation Page", "description": "A custom disambiguation page name.", "example": "Disambiguation Page", "type": "wiki-page-name" }, "2": { "label": "Link Label", "description": "A label for the custom disambiguation page.", "example": "Alternative Page Name", "type": "line" }, "topic": { "label": "Custom Topic", "description": "In case {{PAGENAME}} does not describe the topic, this can be used to display a custom topic", "example": "a custom topic", "default": "{{PAGENAME}}", "type": "line" } }, "description": "This hatnote template is meant to be used at the top of an article to indicate the existence of a disambiguation page.", "paramOrder": [ "1", "2", "topic" ], "format": "inline" } </templatedata> == Examples == {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{Disambiguation}}</nowiki></code> || {{Disambiguation|topic=Example}} |- | <code><nowiki>{{Disambiguation|Special:Random|topic=Example}}</nowiki></code> || {{Disambiguation|Special:Random|topic=Example}} |- | <code><nowiki>{{Disambiguation|Special:Random|Page Label|topic=this particular topic}}</nowiki></code> || {{Disambiguation|Special:Random|Page Label|topic=this particular topic}} |} == Dependencies == For this template to work properly, you need the following: * The {{tl|Hatnote}} base template. * The <code>.hatnote</code> class, found in [[MediaWiki:Common.css]]. == Source == Roughly based on [[wikipedia:Template:About|Wikipedia's About Template]]. <noinclude>[[Category:Template documentation]]</noinclude> 5fce9c689120c57454571ff0e60a2cd447df5713 Template:Documentation 10 66 67 2024-05-28T15:04:00Z Geekette828 51691 Created page with "<includeonly><!-- --><div class="documentation"><!-- --><div class="documentation-header"><!-- -->[[File:Template-{{#ifexist:{{#vardefineecho:docpage|{{{1|Template:{{#replace:{{{1|{{PAGENAME}}/doc}}}|Template:|}}}}}<!-- end vde -->}}|{{#if:{{{baddoc|}}}|bad}}|no}}info.svg|50px|link=]] <!-- --><span style="font-weight: bold; font-size: 125%; margin-right: 10px;">Documentation</span> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!--nothing-->|<!-- -->{{#ifexist:{{#var:do..." wikitext text/x-wiki <includeonly><!-- --><div class="documentation"><!-- --><div class="documentation-header"><!-- -->[[File:Template-{{#ifexist:{{#vardefineecho:docpage|{{{1|Template:{{#replace:{{{1|{{PAGENAME}}/doc}}}|Template:|}}}}}<!-- end vde -->}}|{{#if:{{{baddoc|}}}|bad}}|no}}info.svg|50px|link=]] <!-- --><span style="font-weight: bold; font-size: 125%; margin-right: 10px;">Documentation</span> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!--nothing-->|<!-- -->{{#ifexist:{{#var:docpage}}|<!-- --><span style="font-size: 90%; font-style: italic;"><!-- -->[{{fullurl:{{#var:docpage}}|action=edit}} Edit] this documentation at [{{fullurl:{{#var:docpage}}|redirect=no}} {{FULLPAGENAMEE:{{#var:docpage}}}}].<!-- --></span><!-- -->}}<!-- -->}}<!-- --><div style="float: right; margin-left: 5px;"><!-- -->[{{fullurl:{{FULLPAGENAMEE}}|action=purge}} purge]<!-- --></div><!-- --></div><!-- <!-- leave line break here --> {{#if:{{{lua|}}}|{{UsesLua|{{{lua}}} }} }} <!-- documentation text/error box begins here --> <div style="border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: 0.5em auto 1em; padding: 0.8em 1.2em; background: var(--wiki-content-background-color--secondary);"> <!-- -->{{#ifexist:{{#var:docpage}}|<!-- If there is documentation --> {{ {{#var:docpage}} }} <!-- Else -->|<!-- -->No documentation subpage exists yet for this template. [{{fullurl:{{FULLPAGENAMEE:Template:{{{1|{{PAGENAME}}}}}}}/doc|action=edit&preload=Template:Doc/preload}} Create one now].<!-- -->[[Category:Templates with no documentation]]<!-- -->}}<!-- leave line break here --> <!-- documentation text/error box ends here --> </div> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!-- -->{{#ifeq:{{BASEPAGENAME}}|Doc|<!--nothing-->|<!-- only if page is not Template:Doc -->This is the documentation page, it should be transcluded into the main template page. See {{tlx|doc}} for more information. <!-- -->[[Category:Template documentation]]<!-- -->}}<!-- -->}}<!-- --></div><!-- --></includeonly><!-- --><noinclude>{{Documentation}} [[Category:Documentation templates] </noinclude> 1bb2144e485544183b40e418123caca2f400340b Category:Templates with no documentation 14 67 68 2024-05-28T15:04:19Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Distinguish 10 68 69 2024-05-28T15:04:40Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- -->{{#vardefine:text|<!-- start vd -->{{#if:{{{text|}}} | {{{text}}} |<!-- start top if -->{{#if:{{{2|}}}<!-- if more than one page -->|[[{{{1}}}]]{{#if:{{{3|}}}<!-- start concat if -->|, [[{{{2}}}]] or [[{{{3}}}]]<!-- concat two -->|<nowiki> </nowiki>or [[{{{2}}}]]<!-- else; concat one -->}}<!-- end concat if -->|[[{{{1}}}]]<!-- else; one page only -->}}<!-- end custom disambig if -->}}<!-- end if -->}}<!-- end vd -->{{Hatnote|<!-- -->Not to be confused with {{#var:text}}.<!-- -->}}<!-- --></includeonly><!-- --><noinclude>{{doc}}[[Category:Hatnote templates]]</noinclude> 67ae5406ffd29bec56cfe7ad6527bb09a9733496 Template:Distinguish/doc 10 69 70 2024-05-28T15:04:41Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <templatedata> { "params": { "1": { "label": "Alternative", "description": "The alternative page.", "example": "Alternative Page", "type": "wiki-page-name", "suggested": true }, "2": { "label": "Second Alternative", "description": "A second alternative page.", "example": "Second Alternative Page", "type": "wiki-page-name" }, "3": { "label": "Third Alternative", "description": "A third alternative page.", "example": "Third Alternative Page", "type": "wiki-page-name" }, "text": { "label": "Alternative Text", "description": "Instead of using pages, you can provide a full alternative text. This parameter overrides other provided parameters.", "example": "the alternative page, [[Alternative Page]]", "type": "line" } }, "description": "This hatnote template is meant to be used to indicate possible alternatives to what the reader wants to find.", "paramOrder": [ "1", "2", "3", "text" ], "format": "inline" } </templatedata> == Examples == {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{Distinguish|Special:Uncategorizedpages}}</nowiki></code> || {{Distinguish|Special:Uncategorizedpages}} |- | <code><nowiki>{{Distinguish|Special:Uncategorizedpages|Special:Uncategorizedfiles}}</nowiki></code> || {{Distinguish|Special:Uncategorizedpages|Special:Uncategorizedfiles}} |- | <code><nowiki>{{Distinguish|Special:Uncategorizedpages|Special:Uncategorizedfiles|Special:Uncategorizedcategories}}</nowiki></code> || {{Distinguish|Special:Uncategorizedpages|Special:Uncategorizedfiles|Special:Uncategorizedcategories}} |- | <code><nowiki>{{Distinguish|Special:Uncategorizedpages{{!}}Page 1}}</nowiki></code> (Custom link label) || {{Distinguish|Special:Uncategorizedpages{{!}}Page 1}} |- | <code><nowiki>{{Distinguish|text = Page 1, another name for [[Special:Uncategorizedpages]]}}</nowiki></code> || {{Distinguish|text = Page 1, another name for [[Special:Uncategorizedpages]]}} |} == Dependencies == For this template to work properly, you need the following: * The {{tl|Hatnote}} base template. * The <code>.hatnote</code> class, found in [[MediaWiki:Common.css]]. == Source == Roughly based on [[wikipedia:Template:Distinguish|Wikipedia's Distinguish Template]]. <noinclude>[[Category:Template documentation]]</noinclude> 2a06ed576ae6479add20834628f9378c657cb4fb Template:Doc 10 70 71 2024-05-28T15:04:43Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:Documentation]] 041222999c2c4765a4663432058f50686fb65f40 Template:Documentation/doc 10 71 72 2024-05-28T15:04:44Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Use {{tl|documentation}} inside of the <code><nowiki><noinclude></noinclude></nowiki></code> section on your template. Then create your template at the <code>/doc</code> subpage of your template. <noinclude>[[Category:Template documentation]]</noinclude> 055b0481a1967951c59f15a09b92767c90baa8dd Template:For 10 72 73 2024-05-28T15:04:45Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- -->{{#vardefine:text|<!-- start vd -->{{#if:{{{3|}}}<!-- if more than one page -->|[[{{{2}}}]]{{#if:{{{4|}}}<!-- start concat if -->|, [[{{{3}}}]] and [[{{{4}}}]]<!-- concat two -->|<nowiki> </nowiki>and [[{{{3}}}]]<!-- else; concat one -->}}<!-- end concat if -->|[[{{{2}}}]]<!-- else; one page only -->}}<!-- end if -->}}<!-- end vd -->{{Hatnote|<!-- -->For {{{1}}}, see {{#var:text}}.<!-- -->}}<!-- --></includeonly><!-- --><noinclude>{{doc}}[[Category:Hatnote templates]]</noinclude> 1899e48855153617f7c0bf3087b781bc80f0395c Template:For/doc 10 73 74 2024-05-28T15:04:46Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <templatedata> { "params": { "1": { "label": "Topic", "description": "The topic the following pages are about.", "example": "more information", "type": "line", "required": true }, "2": { "label": "Related Page", "description": "A related page.", "example": "Related Page", "type": "wiki-page-name", "required": true }, "3": { "label": "Second Page", "description": "A second related page.", "example": "Second Related Page", "type": "wiki-page-name" }, "4": { "label": "Third Page", "description": "A third related page.", "example": "Third Related Page", "type": "wiki-page-name" } }, "description": "This hatnote template is meant to be used to show pages related to a topic the reader might want to visit.", "paramOrder": [ "1", "2", "3", "4" ], "format": "inline" } </templatedata> == Examples == {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{For|more information|Special:WantedPages}}</nowiki></code> || {{For|more information|Special:WantedPages}} |- | <code><nowiki>{{For|more information|Special:WantedPages|Special:UncategorizedPages}}</nowiki></code> || {{For|more information|Special:WantedPages|Special:UncategorizedPages}} |- | <code><nowiki>{{For|more information|Special:WantedPages|Special:UncategorizedPages|Special:UncategorizedCategories}}</nowiki></code> || {{For|more information|Special:WantedPages|Special:UncategorizedPages|Special:UncategorizedCategories}} |- | <code><nowiki>{{For|more information|Special:WantedPages{{!}}Page 1}}</nowiki></code> (Custom link label) || {{For|more information|Special:WantedPages{{!}}Page 1}} |} == Dependencies == For this template to work properly, you need the following: * The {{tl|Hatnote}} base template. * The <code>.hatnote</code> class, found in [[MediaWiki:Common.css]]. == Source == Roughly based on [[wikipedia:Template:For|Wikipedia's For Template]]. <noinclude>[[Category:Template documentation]]</noinclude> b2a30a9bf8acff259d5e86654a2de69c2d5e4fff Template:Gad 10 74 75 2024-05-28T15:04:48Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <code>Gadget - [[MediaWiki:Gadget-{{{1}}}|{{{1}}}]]</code><noinclude>[[Category:Formatting templates]]</noinclude> 3ddc96bdd5961224a208f920b89d07676df2b8ac Template:Hatnote 10 75 76 2024-05-28T15:04:48Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- --><div class="hatnote {{#if:{{{icon|}}}|icon}}">{{#if:{{{icon|}}}|[[File:{{{icon}}}|x22px]]<nowiki> </nowiki>}}{{{1|}}}</div><!-- --></includeonly><!-- --><noinclude>{{doc}}[[Category:Hatnote templates| ]]</noinclude> d7a4d8889e7aa401084a21a4a295267f8e910a13 Template:Hatnote/doc 10 76 77 2024-05-28T15:04:49Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{No direct use}} == List of Hatnote Templates == * {{tl|Disambiguation}} * {{tl|Distinguish}} * {{tl|For}} * {{tl|Main}} == Dependencies == For this template to work properly, you need the following: * The <code>.hatnote</code> class, found in [[MediaWiki:Common.css]]. * The <code>--wiki-body-dynamic-color--secondary--inverted</code> CSS variable, defined in [[MediaWiki:Common.css]]. <noinclude>[[Category:Template documentation]]</noinclude> 146c25eada492520a5b60e4c03108cce6db97b6a Template:I 10 77 78 2024-05-28T15:04:50Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Link icon]] 6ebdedb4de95efaa3e6ca27590e79aca674f2364 Template:Item icon 10 78 79 2024-05-28T15:04:51Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Link icon|{{{1|}}}|{{{2|}}}|type=Item}}</includeonly><noinclude>{{documentation}}[[Category:Formatting templates]]</noinclude> 6564279e3808e659b8034ad4b96f4f9e9e498b57 Template:Item icon/doc 10 79 80 2024-05-28T15:04:52Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki == Summary == <templatedata> { "params": { "1": { "aliases": [ "page" ], "label": "Page Name", "description": "The name for the target page.", "example": "Page Name", "type": "wiki-page-name", "required": true }, "2": { "aliases": [ "label" ], "label": "Link Label", "description": "The text to the be displayed on the link icon's label.", "example": "Alternative Page Name", "type": "line" } }, "description": "Use this template to display an icon next to a page link.\n\nThis template assumes that each page has an icon uploaded at a specific location, namely \"File:Page Name (Item).png\".", "format": "inline" } </templatedata> == Examples == For the examples below, <code><nowiki>File:Mystic Feather (Item).png</nowiki></code> was used as the icon for a page called <code>Mystic Feather</code>. {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{Item icon|Mystic Feather}}</nowiki></code> || {{Item icon|Mystic Feather}} |- | <code><nowiki>{{Item icon|Mystic Feather|Mystic Feathers}}</nowiki></code> || {{Item icon|Mystic Feather|Mystic Feathers}} |- | <code><nowiki>{{Item icon|Mystic Feather|notext}}</nowiki></code> || {{Item icon|Mystic Feather|notext}} |- | <code><nowiki>{{Item icon|Missing Item}}</nowiki></code> (Missing Page Icon) || {{Item icon|Missing Item}} |} == Dependencies== For this template to work properly, you need the following: * The base {{tl|Link icon}} template. * The <code>.link-icon</code> class and any related classes, found in [[MediaWiki:Common.css]]. 4dfcab6f3d3c88596068607685645f29666f0141 Template:Key 10 80 81 2024-05-28T15:04:54Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- -->{{#vardefine:platform | {{#if: {{{2|}}} | {{#switch: {{lc:{{{1|}}}}} <!-- Desktop --> |mouse |keyboard=keyboard <!-- Mobile --> |gesture=gesture <!-- Microsoft --> |xboxseries |xbox=Xbox |xbox one |xbone |xbox1 |xboxone=xboxone |xbox 360 |xb360 |xbox360 |360=360 <!-- Sony --> |ps |ps5 |playstation |ds |dualsense=DualSense |playstation 4 |ps4=ps4 |playstation 3 |ps3=ps3 <!-- Nintendo --> |ns |switch=Switch |wii=wii }} | undefined }} }}<!-- -->{{#vardefine:key | {{#if: {{{2|}}} | {{ucfirst:{{{2}}}}} | {{ucfirst:{{{1}}}}} }} }}<!-- -->{{#vardefine:img | {{#if: {{{2|}}} | [[File:{{#var:platform}} {{#var:key}}.png|x25px|link=]] }} | Undefined }}<!-- --><span class="key">{{#var:img}}</span><!-- --></includeonly><!-- --><noinclude>{{doc}}</noinclude> 35b1803669bb4b206268281dfce31a8faa448a68 Template:Key/doc 10 81 82 2024-05-28T15:04:55Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <tabber> |-|Desktop={{:Template:Key/doc/Keyboard}} |-|Mobile={{:Template:Key/doc/Gesture}} |-|Xbox={{:Template:Key/doc/Xbox}} |-|PlayStation={{:Template:Key/doc/DualSense}} |-|Nintendo Switch={{:Template:Key/doc/Nintendo Switch}} </tabber> <noinclude>[[Category:Key template documentation]]</noinclude> d59bc21844666f81d51a44a0e47551c3e2f06ea1 Template:Key/doc/DualSense 10 82 83 2024-05-28T15:04:56Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Images Source: [[dev:Category:DualSense_input_images]] === Buttons === <code><nowiki>{{Key|PS|Directional}}</nowiki></code> {{Key|PS|Directional}} <code><nowiki>{{Key|PS|Directional Left}}</nowiki></code> {{Key|PS|Directional Left}} <code><nowiki>{{Key|PS|Directional Right}}</nowiki></code> {{Key|PS|Directional Right}} <code><nowiki>{{Key|PS|Directional Up}}</nowiki></code> {{Key|PS|Directional Up}} <code><nowiki>{{Key|PS|Directional Down}}</nowiki></code> {{Key|PS|Directional Down}} <code><nowiki>{{Key|PS|Left Stick}}</nowiki></code> {{Key|PS|Left Stick}} <code><nowiki>{{Key|PS|Right Stick}}</nowiki></code> {{Key|PS|Right Stick}} <code><nowiki>{{Key|PS|Touch Pad}}</nowiki></code> {{Key|PS|Touch Pad}} <code><nowiki>{{Key|PS|Circle}}</nowiki></code> {{Key|PS|Circle}} <code><nowiki>{{Key|PS|Cross}}</nowiki></code> {{Key|PS|Cross}} <code><nowiki>{{Key|PS|Square}}</nowiki></code> {{Key|PS|Square}} <code><nowiki>{{Key|PS|Triangle}}</nowiki></code> {{Key|PS|Triangle}} <code><nowiki>{{Key|PS|Create}}</nowiki></code> {{Key|PS|Create}} <code><nowiki>{{Key|PS|Options}}</nowiki></code> {{Key|PS|Options}} <code><nowiki>{{Key|PS|L1}}</nowiki></code> {{Key|PS|L1}} <code><nowiki>{{Key|PS|R1}}</nowiki></code> {{Key|PS|R1}} <code><nowiki>{{Key|PS|L2}}</nowiki></code> {{Key|PS|L2}} <code><nowiki>{{Key|PS|R2}}</nowiki></code> {{Key|PS|R2}} <code><nowiki>{{Key|PS|L3}}</nowiki></code> {{Key|PS|L3}} <code><nowiki>{{Key|PS|R3}}</nowiki></code> {{Key|PS|R3}} <code><nowiki>{{Key|PS|Mute}}</nowiki></code> {{Key|PS|Mute}} <code><nowiki>{{Key|PS|PS}}</nowiki></code> {{Key|PS|PS}} === Diagram === <code><nowiki>{{Key|PS|Controller Diagram}}</nowiki></code> {{Key|PS|Controller Diagram}} <noinclude>[[Category:Key template documentation]]</noinclude> 46666b1986cc232e5463c29aa870d1f39ffec583 Template:Key/doc/Gesture 10 83 84 2024-05-28T15:04:57Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Images Source: [[dev:Category:Gesture_input_images]] === Fingers === <code><nowiki>{{key|gesture|finger front}}</nowiki></code> {{key|gesture|finger front}} <code><nowiki>{{key|gesture|finger side}}</nowiki></code> {{key|gesture|finger side}} === Tap & Hold === <code><nowiki>{{key|gesture|tap}}</nowiki></code> {{key|gesture|tap}} <code><nowiki>{{key|gesture|double tap}}</nowiki></code> {{key|gesture|double tap}} <code><nowiki>{{key|gesture|hold}}</nowiki></code> {{key|gesture|hold}} === Swipe Motions === <code><nowiki>{{key|gesture|swipe bottom left}}</nowiki></code> {{key|gesture|swipe bottom left}} <code><nowiki>{{key|gesture|swipe bottom right}}</nowiki></code> {{key|gesture|swipe bottom right}} <code><nowiki>{{key|gesture|swipe down}}</nowiki></code> {{key|gesture|swipe down}} <code><nowiki>{{key|gesture|swipe left}}</nowiki></code> {{key|gesture|swipe left}} <code><nowiki>{{key|gesture|swipe right}}</nowiki></code> {{key|gesture|swipe right}} <code><nowiki>{{key|gesture|swipe top left}}</nowiki></code> {{key|gesture|swipe top right}} <code><nowiki>{{key|gesture|swipe up}}</nowiki></code> {{key|gesture|swipe up}} === Zoom & Scroll === <code><nowiki>{{key|gesture|zoom in}}</nowiki></code> {{key|gesture|zoom in}} <code><nowiki>{{key|gesture|zoom out}}</nowiki></code> {{key|gesture|zoom out}} <code><nowiki>{{key|gesture|scroll down}}</nowiki></code> {{key|gesture|scroll down}} <code><nowiki>{{key|gesture|scroll left}}</nowiki></code> {{key|gesture|scroll left}} <code><nowiki>{{key|gesture|scroll right}}</nowiki></code> {{key|gesture|scroll right}} <code><nowiki>{{key|gesture|scroll up}}</nowiki></code> {{key|gesture|scroll up}} === Circular Motions === <code><nowiki>{{key|gesture|double rotate}</nowiki></code> {{key|gesture|double rotate}} <code><nowiki>{{key|gesture|full circle}}</nowiki></code> {{key|gesture|full circle}} <code><nowiki>{{key|gesture|half circle}}</nowiki></code> {{key|gesture|half circle}} <code><nowiki>{{key|gesture|quarter circle}}</nowiki></code> {{key|gesture|quarter circle}} __NOTOC__ <noinclude>[[Category:Key template documentation]]</noinclude> 9ba3327d97d6810dde5c2dcc731a2bd9f50b6d0e Template:Key/doc/Nintendo Switch 10 84 85 2024-05-28T15:04:58Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Images Source: [[dev:Category:Switch_input_images]] === Nintendo Switch === <code><nowiki>{{Key|Switch|a}}</nowiki></code> {{Key|Switch|a}} <code><nowiki>{{Key|Switch|b}}</nowiki></code> {{Key|Switch|b}} <code><nowiki>{{Key|Switch|x}}</nowiki></code> {{Key|Switch|x}} <code><nowiki>{{Key|Switch|y}}</nowiki></code> {{Key|Switch|y}} <code><nowiki>{{Key|Switch|Left Stick}}</nowiki></code> {{Key|Switch|Left Stick}} <code><nowiki>{{Key|Switch|Right Stick}}</nowiki></code> {{Key|Switch|Right Stick}} <code><nowiki>{{Key|Switch|Left Stick Press}}</nowiki></code> {{Key|Switch|Left Stick Press}} <code><nowiki>{{Key|Switch|Right Stick Press}}</nowiki></code> {{Key|Switch|Right Stick Press}} <code><nowiki>{{Key|Switch|-}}</nowiki></code> {{Key|Switch|-}} <code><nowiki>{{Key|Switch|+}}</nowiki></code> {{Key|Switch|+}} <code><nowiki>{{Key|Switch|Capture}}</nowiki></code> {{Key|Switch|Capture}} <code><nowiki>{{Key|Switch|HOME}}</nowiki></code> {{Key|Switch|HOME}} <code><nowiki>{{Key|Switch|L}}</nowiki></code> {{Key|Switch|L}} <code><nowiki>{{Key|Switch|R}}</nowiki></code> {{Key|Switch|R}} <code><nowiki>{{Key|Switch|ZL}}</nowiki></code> {{Key|Switch|ZL}} <code><nowiki>{{Key|Switch|ZR}}</nowiki></code> {{Key|Switch|ZR}} === Pro Controller === <code><nowiki>{{Key|Switch|Pro Control Pad}}</nowiki></code> {{Key|Switch|Pro Control Pad}} <code><nowiki>{{Key|Switch|Pro Control Pad Left}}</nowiki></code> {{Key|Switch|Pro Control Pad Left}} <code><nowiki>{{Key|Switch|Pro Control Pad Right}}</nowiki></code> {{Key|Switch|Pro Control Pad Right}} <code><nowiki>{{Key|Switch|Pro Control Pad Up}}</nowiki></code> {{Key|Switch|Pro Control Pad Up}} <code><nowiki>{{Key|Switch|Pro Control Pad Down}}</nowiki></code> {{Key|Switch|Pro Control Pad Down}} === Joy-Con === <code><nowiki>{{Key|Switch|Directional Left}}</nowiki></code> {{Key|Switch|Directional Left}} <code><nowiki>{{Key|Switch|Directional Right}}</nowiki></code> {{Key|Switch|Directional Right}} <code><nowiki>{{Key|Switch|Directional Up}}</nowiki></code> {{Key|Switch|Directional Up}} <code><nowiki>{{Key|Switch|Directional Down}}</nowiki></code> {{Key|Switch|Directional Down}} ==== Diagrams ==== <code><nowiki>{{Key|Switch|Joy-Con}}</nowiki></code> {{Key|Switch|Joy-Con}} <code><nowiki>{{Key|Switch|Joy-Con Separate}}</nowiki></code> {{Key|Switch|Joy-Con Separate}} <code><nowiki>{{Key|Switch|Joy-Con Left}}</nowiki></code> {{Key|Switch|Joy-Con Left}} <code><nowiki>{{Key|Switch|Joy-Con Right}}</nowiki></code> {{Key|Switch|Joy-Con Right}} __NOTOC__ <noinclude>[[Category:Key template documentation]]</noinclude> 3656bc1084c0bfaa077723e58b10288af7a54e4c Template:Key/doc/PS4 10 85 86 2024-05-28T15:05:01Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Images Source: [[dev:Category:PS4_input_images]] === D-Pad & Sticks === <code><nowiki>{{key|ps4|dpad}}</nowiki></code> {{key|ps4|dpad}} <code><nowiki>{{key|ps4|left}}</nowiki></code> {{key|ps4|left}} <code><nowiki>{{key|ps4|right}}</nowiki></code> {{key|ps4|right}} <code><nowiki>{{key|ps4|up}}</nowiki></code> {{key|ps4|up}} <code><nowiki>{{key|ps4|down}}</nowiki></code> {{key|ps4|down}} <code><nowiki>{{key|ps4|left stick}}</nowiki></code> {{key|ps4|left stick}} <code><nowiki>{{key|ps4|right stick}}</nowiki></code> {{key|ps4|right stick}} <code><nowiki>{{key|ps4|touch pad}}</nowiki></code> {{key|ps4|touch pad}} === Front Buttons === <code><nowiki>{{key|ps4|circle}}</nowiki></code> {{key|ps4|circle}} <code><nowiki>{{key|ps4|cross}}</nowiki></code> {{key|ps4|cross}} <code><nowiki>{{key|ps4|square}}</nowiki></code> {{key|ps4|square}} <code><nowiki>{{key|ps4|triangle}}</nowiki></code> {{key|ps4|triangle}} <code><nowiki>{{key|ps4|share}}</nowiki></code> {{key|ps4|share}} <code><nowiki>{{key|ps4|options}}</nowiki></code> {{key|ps4|options}} === Rear Buttons === <code><nowiki>{{key|ps4|l1}}</nowiki></code> {{key|ps4|l1}} <code><nowiki>{{key|ps4|r1}}</nowiki></code> {{key|ps4|r1}} <code><nowiki>{{key|ps4|l2}}</nowiki></code> {{key|ps4|l2}} <code><nowiki>{{key|ps4|r2}}</nowiki></code> {{key|ps4|r2}} <noinclude>[[Category:Key template documentation]]</noinclude> 9a5b9ac2240ead8eef67ebf6ca50081c6de18b3b Template:Key/doc/Xbox 10 86 87 2024-05-28T15:05:02Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Images Source: [[dev:Category:Xbox input images]] === Series & One === <code><nowiki>{{Key|Xbox|A}}</nowiki></code> {{Key|Xbox|A}} <code><nowiki>{{Key|Xbox|B}}</nowiki></code> {{Key|Xbox|B}} <code><nowiki>{{Key|Xbox|X}}</nowiki></code> {{Key|Xbox|X}} <code><nowiki>{{Key|Xbox|Y}}</nowiki></code> {{Key|Xbox|y}} <code><nowiki>{{Key|Xbox|Left Thumbstick}}</nowiki></code> {{Key|Xbox|Left Thumbstick}} <code><nowiki>{{Key|Xbox|Right Thumbstick}}</nowiki></code> {{Key|Xbox|Right Thumbstick}} <code><nowiki>{{Key|Xbox|Left Thumbstick Press}}</nowiki></code> {{Key|Xbox|Left Thumbstick Press}} <code><nowiki>{{Key|Xbox|Right Thumbstick Press}}</nowiki></code> {{Key|Xbox|Right Thumbstick Press}} <code><nowiki>{{Key|Xbox|LB}}</nowiki></code> {{Key|Xbox|LB}} <code><nowiki>{{Key|Xbox|RB}}</nowiki></code> {{Key|Xbox|RB}} <code><nowiki>{{Key|Xbox|View}}</nowiki></code> {{Key|Xbox|View}} <code><nowiki>{{Key|Xbox|Menu}}</nowiki></code> {{Key|Xbox|Menu}} <code><nowiki>{{Key|Xbox|Button}}</nowiki></code> {{Key|Xbox|Button}} === Xbox Series === <code><nowiki>{{Key|Xbox|D-pad}}</nowiki></code> {{Key|Xbox|D-pad}} <code><nowiki>{{Key|Xbox|D-pad Left}}</nowiki></code> {{Key|Xbox|D-pad Left}} <code><nowiki>{{Key|Xbox|D-pad Right}}</nowiki></code> {{Key|Xbox|D-pad Right}} <code><nowiki>{{Key|Xbox|D-pad Up}}</nowiki></code> {{Key|Xbox|D-pad Up}} <code><nowiki>{{Key|Xbox|D-pad Down}}</nowiki></code> {{Key|Xbox|D-pad Down}} <code><nowiki>{{Key|Xbox|LT}}</nowiki></code> {{Key|Xbox|LT}} <code><nowiki>{{Key|Xbox|RT}}</nowiki></code> {{Key|Xbox|RT}} <code><nowiki>{{Key|Xbox|Share}}</nowiki></code> {{Key|Xbox|Share}} ==== Diagram ==== <code><nowiki>{{Key|Xbox|Series Controller Diagram}}</nowiki></code> {{Key|Xbox|Series Controller Diagram}} === Xbox One === <code><nowiki>{{Key|Xbox|One D-pad}}</nowiki></code> {{Key|Xbox|D-pad}} <code><nowiki>{{Key|Xbox|One D-pad Left}}</nowiki></code> {{Key|Xbox|D-pad Left}} <code><nowiki>{{Key|Xbox|One D-pad Right}}</nowiki></code> {{Key|Xbox|D-pad Right}} <code><nowiki>{{Key|Xbox|One D-pad Up}}</nowiki></code> {{Key|Xbox|D-pad Up}} <code><nowiki>{{Key|Xbox|One D-pad Down}}</nowiki></code> {{Key|Xbox|D-pad Down}} <code><nowiki>{{Key|Xbox|One Left Trigger}}</nowiki></code> {{Key|Xbox|One Left Trigger}} <code><nowiki>{{Key|Xbox|One Right Trigger}}</nowiki></code> {{Key|Xbox|One Right Trigger}} ==== Diagram ==== <code><nowiki>{{Key|Xbox|One Controller Diagram}}</nowiki></code> {{Key|Xbox|One Controller Diagram}} <noinclude>[[Category:Key template documentation]]</noinclude> 1d2071cc78fa85a6c9824b188bea921c10d533f7 Template:License 10 87 88 2024-05-28T15:05:04Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/{{{1|nolicense}}}|source={{{source|}}}}}</includeonly> <noinclude>{{documentation}}</noinclude> 97ce18acc45bafbcf8fbbf066408a1e8ca46f82e 89 88 2024-05-28T15:05:04Z RheingoldRiver 2743 Protected "[[Template:License]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/{{{1|nolicense}}}|source={{{source|}}}}}</includeonly> <noinclude>{{documentation}}</noinclude> 97ce18acc45bafbcf8fbbf066408a1e8ca46f82e Template:License/CC-BY 10 88 90 2024-05-28T15:05:05Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY | icon = [[File:CC-BY.svg|x50px|link=https://creativecommons.org/licenses/by/3.0/|CC-BY]] | text = This file is under the [https://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 956c4b541bf09eae168956e88b0723f17909801b 91 90 2024-05-28T15:05:06Z RheingoldRiver 2743 Protected "[[Template:License/CC-BY]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY | icon = [[File:CC-BY.svg|x50px|link=https://creativecommons.org/licenses/by/3.0/|CC-BY]] | text = This file is under the [https://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 956c4b541bf09eae168956e88b0723f17909801b Template:License/CC-BY-NC 10 89 92 2024-05-28T15:05:06Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-NC | icon = [[File:CC-BY-NC.svg|x50px|link=https://creativecommons.org/licenses/by-nc/3.0/|CC-BY-NC]] | text = This file is under the [https://creativecommons.org/licenses/by-nc/3.0/ Creative Commons Attribution-NonCommercial 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 0a71686704d05cbe6c47127502d6efbcfbc07aaa 93 92 2024-05-28T15:05:07Z RheingoldRiver 2743 Protected "[[Template:License/CC-BY-NC]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-NC | icon = [[File:CC-BY-NC.svg|x50px|link=https://creativecommons.org/licenses/by-nc/3.0/|CC-BY-NC]] | text = This file is under the [https://creativecommons.org/licenses/by-nc/3.0/ Creative Commons Attribution-NonCommercial 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 0a71686704d05cbe6c47127502d6efbcfbc07aaa Template:License/CC-BY-NC-ND 10 90 94 2024-05-28T15:05:08Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-NC-ND | icon = [[File:CC-BY-NC-ND.svg|x50px|link=https://creativecommons.org/licenses/by-nc-nd/3.0/|CC-BY-NC-ND]] | text = This file is under the [https://creativecommons.org/licenses/by-nc-nd/3.0/ Creative Commons Attribution-NonCommercial-NoDerivs 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> d2662f8aed08d926b744cdc1263786bb06e84f56 95 94 2024-05-28T15:05:08Z RheingoldRiver 2743 Protected "[[Template:License/CC-BY-NC-ND]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-NC-ND | icon = [[File:CC-BY-NC-ND.svg|x50px|link=https://creativecommons.org/licenses/by-nc-nd/3.0/|CC-BY-NC-ND]] | text = This file is under the [https://creativecommons.org/licenses/by-nc-nd/3.0/ Creative Commons Attribution-NonCommercial-NoDerivs 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> d2662f8aed08d926b744cdc1263786bb06e84f56 Template:License/CC-BY-NC-SA 10 91 96 2024-05-28T15:05:10Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-NC-SA | icon = [[File:CC-BY-NC-SA.svg|x50px|link=https://creativecommons.org/licenses/by-nc-sa/3.0/|CC-BY-NC-SA]] | text = This file is under the [https://creativecommons.org/licenses/by-nc-sa/3.0/ Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 0aebf809772f77e9f40a27a46cbead47b0f23637 97 96 2024-05-28T15:05:11Z RheingoldRiver 2743 Protected "[[Template:License/CC-BY-NC-SA]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-NC-SA | icon = [[File:CC-BY-NC-SA.svg|x50px|link=https://creativecommons.org/licenses/by-nc-sa/3.0/|CC-BY-NC-SA]] | text = This file is under the [https://creativecommons.org/licenses/by-nc-sa/3.0/ Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 0aebf809772f77e9f40a27a46cbead47b0f23637 Template:License/CC-BY-ND 10 92 98 2024-05-28T15:05:11Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-ND | icon = [[File:CC-BY-ND.svg|x50px|link=https://creativecommons.org/licenses/by-nd/3.0/|CC-BY-ND]] | text = This file is under the [https://creativecommons.org/licenses/by-nd/3.0/ Creative Commons Attribution-NoDerivs 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 9a591941dc48084ecdd082f576380411b1406230 99 98 2024-05-28T15:05:12Z RheingoldRiver 2743 Protected "[[Template:License/CC-BY-ND]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-ND | icon = [[File:CC-BY-ND.svg|x50px|link=https://creativecommons.org/licenses/by-nd/3.0/|CC-BY-ND]] | text = This file is under the [https://creativecommons.org/licenses/by-nd/3.0/ Creative Commons Attribution-NoDerivs 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 9a591941dc48084ecdd082f576380411b1406230 Template:License/CC-BY-SA 10 93 100 2024-05-28T15:05:13Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-SA | icon = [[File:CC-BY-SA.svg|x50px|link=https://creativecommons.org/licenses/by-sa/3.0/|CC-BY-SA]] | text = This file is under the [https://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-ShareAlike 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 43ba316c09d5eea2d13222f551d084eeaa807011 Template:License/CC-BY-SA 10 93 101 100 2024-05-28T15:05:14Z RheingoldRiver 2743 Protected "[[Template:License/CC-BY-SA]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-BY-SA | icon = [[File:CC-BY-SA.svg|x50px|link=https://creativecommons.org/licenses/by-sa/3.0/|CC-BY-SA]] | text = This file is under the [https://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-ShareAlike 3.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 43ba316c09d5eea2d13222f551d084eeaa807011 Template:License/CC-PD 10 94 102 2024-05-28T15:05:15Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-PD | icon = [[File:CC-PD.svg|x50px|link=|Public Domain]] | text = This file has been released into the public domain by the copyright holder, its copyright has expired, or it is ineligible for copyright. This applies worldwide. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 729aa1019207fed07b48064e2032cc53c6346f25 103 102 2024-05-28T15:05:16Z RheingoldRiver 2743 Protected "[[Template:License/CC-PD]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-PD | icon = [[File:CC-PD.svg|x50px|link=|Public Domain]] | text = This file has been released into the public domain by the copyright holder, its copyright has expired, or it is ineligible for copyright. This applies worldwide. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 729aa1019207fed07b48064e2032cc53c6346f25 Template:License/CC-SRR 10 95 104 2024-05-28T15:05:16Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-SRR | icon = [[File:CC-SRR.svg|link=|CC-Some Rights Reserved]] | text = This file is under the Creative Commons Some Rights Reserved License. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 9f9699ab0bd08dd66c0f61ec3b2455905e40bdf5 105 104 2024-05-28T15:05:17Z RheingoldRiver 2743 Protected "[[Template:License/CC-SRR]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC-SRR | icon = [[File:CC-SRR.svg|link=|CC-Some Rights Reserved]] | text = This file is under the Creative Commons Some Rights Reserved License. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 9f9699ab0bd08dd66c0f61ec3b2455905e40bdf5 Template:License/CC0 10 96 106 2024-05-28T15:05:23Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC0 | icon = [[File:CC-0.svg|x50px|link=https://creativecommons.org/publicdomain/zero/1.0/|CC0]] | text = This file is under the [https://creativecommons.org/publicdomain/zero/1.0/ CC0 1.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 5b4bdd9526f2eee026aaa54d08d4b75c91cf2200 107 106 2024-05-28T15:05:24Z RheingoldRiver 2743 Protected "[[Template:License/CC0]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = CC0 | icon = [[File:CC-0.svg|x50px|link=https://creativecommons.org/publicdomain/zero/1.0/|CC0]] | text = This file is under the [https://creativecommons.org/publicdomain/zero/1.0/ CC0 1.0 License]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 5b4bdd9526f2eee026aaa54d08d4b75c91cf2200 Template:License/Fairuse 10 97 108 2024-05-28T15:05:25Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:License/fairuse]] ecb7db41961bb5256d571593ca3f90ae1e199a3e Template:License/doc 10 98 109 2024-05-28T15:05:26Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki This template is to be used in a Licensing heading on file pages to denote the file's license. == Available Licenses == === Game === * {{tl|License/game}} * Usage: <nowiki>{{License|game}}</nowiki> {{License|game}} === Fairuse === * {{tl|License/fairuse}} * Usage: <nowiki>{{License|fairuse}}</nowiki> {{License|fairuse}} === CC0 === * {{tl|License/CC0}} * Usage: <nowiki>{{License|CC0}}</nowiki> {{License|CC0}} === CC-BY-NC-ND === * {{tl|License/CC-BY-NC-ND}} * Usage: <nowiki>{{License|CC-BY-NC-ND}}</nowiki> {{License|CC-BY-NC-ND}} === CC-BY-NC-SA === * {{tl|License/CC-BY-NC-SA}} * Usage: <nowiki>{{License|CC-BY-NC-SA}}</nowiki> {{License|CC-BY-NC-SA}} === CC-BY-NC === * {{tl|License/CC-BY-NC}} * Usage: <nowiki>{{License|CC-BY-NC}}</nowiki> {{License|CC-BY-NC}} === CC-BY-ND === * {{tl|License/CC-BY-ND}} * Usage: <nowiki>{{License|CC-BY-ND}}</nowiki> {{License|CC-BY-ND}} === CC-BY-SA === * {{tl|License/CC-BY-SA}} * Usage: <nowiki>{{License|CC-BY-SA}}</nowiki> {{License|CC-BY-SA}} === CC-BY === * {{tl|License/CC-BY}} * Usage: <nowiki>{{License|CC-BY}}</nowiki> {{License|CC-BY}} === CC-PD === * {{tl|License/CC-PD}} * Usage: <nowiki>{{License|CC-PD}}</nowiki> {{License|CC-PD}} === CC-SRR === * {{tl|License/CC-SRR}} * Usage: <nowiki>{{License|CC-SRR}}</nowiki> {{License|CC-SRR}} '''Providing no parameter (or invalid one) defaults to the nolicense notice:''' <nowiki>{{License}}</nowiki>{{License}} '''Source parameter (optional):''' The source parameter accepts a url to the source where the file came from if necessary for attribution. Example: <nowiki>{{License|game|source=https://freedom.gg/}}</nowiki> {{License|game|source=https://freedom.gg/}} <includeonly> [[Category:License templates]] </includeonly> <noinclude>[[Category:Template documentation]]</noinclude> 2adafa339e0fede1d72df913446ab98652f733c5 Template:License/fairuse 10 99 110 2024-05-28T15:05:27Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = fairuse | darkIcon = yes | icon = [[File:IN COPYRIGHT.svg|50px|link=https://rightsstatements.org/page/InC/1.0/?language=en|IN COPYRIGHT]] | text = This file is copyrighted. It will be used in a way that qualifies as fair use under [https://en.wikipedia.org/wiki/Fair_use#Fair_use_under_United_States_law US copyright law]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> ab575747427e43b6d5dc2d98e19579ebd2dac54e 111 110 2024-05-28T15:05:27Z RheingoldRiver 2743 Protected "[[Template:License/fairuse]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = fairuse | darkIcon = yes | icon = [[File:IN COPYRIGHT.svg|50px|link=https://rightsstatements.org/page/InC/1.0/?language=en|IN COPYRIGHT]] | text = This file is copyrighted. It will be used in a way that qualifies as fair use under [https://en.wikipedia.org/wiki/Fair_use#Fair_use_under_United_States_law US copyright law]. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> ab575747427e43b6d5dc2d98e19579ebd2dac54e Template:License/game 10 100 112 2024-05-28T15:05:28Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = developer | darkIcon = yes | icon = [[File:IN COPYRIGHT.svg|50px|link=https://rightsstatements.org/page/InC/1.0/?language=en|IN COPYRIGHT]] | text = This file is owned by [https://freedom.gg Freedom Games] and/or its licensors, and is licensed under the Freedom Games [https://docs.google.com/document/u/0/d/1-Q1W906OE2vVX9dR1imI6BmXvCURzC7_4NgQTNCzFdA/pub Terms of Use].<br/> All trademarks and registered trademarks present in the file are proprietary to Freedom Games and/or its licensors. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 9f7489210d15e57eb34e5641e935e474c9d75615 113 112 2024-05-28T15:05:29Z RheingoldRiver 2743 Protected "[[Template:License/game]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = developer | darkIcon = yes | icon = [[File:IN COPYRIGHT.svg|50px|link=https://rightsstatements.org/page/InC/1.0/?language=en|IN COPYRIGHT]] | text = This file is owned by [https://freedom.gg Freedom Games] and/or its licensors, and is licensed under the Freedom Games [https://docs.google.com/document/u/0/d/1-Q1W906OE2vVX9dR1imI6BmXvCURzC7_4NgQTNCzFdA/pub Terms of Use].<br/> All trademarks and registered trademarks present in the file are proprietary to Freedom Games and/or its licensors. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 9f7489210d15e57eb34e5641e935e474c9d75615 Template:License/nolicense 10 101 114 2024-05-28T15:05:30Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = nolicense | icon = [[File:Warning-red.svg|50px|link=|No license has been selected.]] | text = Please select the proper license for this file by adding the proper parameter to <nowiki>{{License}}</nowiki>. See [[Template:License]] for details. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 6fcc074a49246120434bbc0a2d2fb6364018548a 115 114 2024-05-28T15:05:31Z RheingoldRiver 2743 Protected "[[Template:License/nolicense]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = nolicense | icon = [[File:Warning-red.svg|50px|link=|No license has been selected.]] | text = Please select the proper license for this file by adding the proper parameter to <nowiki>{{License}}</nowiki>. See [[Template:License]] for details. }}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> 6fcc074a49246120434bbc0a2d2fb6364018548a Template:License/template 10 102 116 2024-05-28T15:05:32Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- --><div class="license {{{type|}}}" style="border: 1px solid var(--wiki-content-border-color); background: var(--wiki-content-background-color--secondary); align-items: center; padding: 5px; display: flex; gap: 1em;"> <div class="icon {{#if:{{{darkIcon|}}}|invert-on-dark}}">{{{icon|}}}</div> <div class="text">{{{text|}}}{{#if:{{{source|}}}|<br/><span class="source">Source:&nbsp;{{{source|}}}</span>}}{{{text2|}}}</div> </div><!-- --></includeonly><noinclude>{{documentation|Template:License/doc}}</noinclude> 7d0e694e6a42a5368b4b62ce6c01bfa2fb4e67b8 117 116 2024-05-28T15:05:33Z RheingoldRiver 2743 Protected "[[Template:License/template]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <includeonly><!-- --><div class="license {{{type|}}}" style="border: 1px solid var(--wiki-content-border-color); background: var(--wiki-content-background-color--secondary); align-items: center; padding: 5px; display: flex; gap: 1em;"> <div class="icon {{#if:{{{darkIcon|}}}|invert-on-dark}}">{{{icon|}}}</div> <div class="text">{{{text|}}}{{#if:{{{source|}}}|<br/><span class="source">Source:&nbsp;{{{source|}}}</span>}}{{{text2|}}}</div> </div><!-- --></includeonly><noinclude>{{documentation|Template:License/doc}}</noinclude> 7d0e694e6a42a5368b4b62ce6c01bfa2fb4e67b8 Template:Link icon 10 103 118 2024-05-28T15:05:33Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{#vardefine:target|{{{1|}}}<!-- end vd -->}}<!-- -->{{#vardefine:display|{{#if:{{{2|}}}|{{{2}}}|{{{1}}}<!-- end if -->}}<!-- end vd -->}}<!-- -->{{#vardefine:iconSize|1.2em}}<!-- -->{{#vardefine:lineHeight|1lh}}<!-- -->{{#vardefine:fileExists|{{filepath:{{#var:target}} ({{{type}}}).png}}}}<!-- -->{{#ifeq: {{{2|}}} | notext <!-- start if notext -->|<span class="link-icon notext" style="--link-icon-size: {{#var:iconSize}}; --link-icon-line-height: {{#var:lineHeight}};"><!-- start notext icon element -->{{#if: {{#var:fileExists}} <!-- start icon if -->| <span class="regular">[[File:{{#var:target}} ({{{type}}}).png|link={{#var:target}}|alt=]]</span><!-- end regular icon -->| <span class="fallback">[[File:{{{1}}} ({{{type}}}).png|?]]</span><!-- end fallback icon (?) -->}}<!-- end icon if --></span><!-- end notext icon -->|<span class="link-icon" style="--link-icon-size: {{#var:iconSize}}; --link-icon-line-height: {{#var:lineHeight}};"><!-- start icon + text element -->{{#if: {{#var:fileExists}} <!-- start icon if -->| <span class="regular">[[File:{{#var:target}} ({{{type}}}).png|link={{#var:target}}|alt=]]</span><!-- end regular icon -->| <span class="fallback">[[File:{{{1}}} ({{{type}}}).png|?]]</span><!-- end fallback icon (?) -->}}&nbsp;<!-- end icon if --><span class="display-text">[[{{#var:target}}|{{#var:display}}]]</span><!-- end display text -->}}<!-- start if notext --></span></includeonly><noinclude>{{Documentation}}[[Category:Formatting templates]]</noinclude> 4e9bb37a48d63bb6b56f32d260dc74f64011e4af Template:Link icon/doc 10 104 119 2024-05-28T15:05:34Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{No direct use}} == List of link icon templates == * {{tl|Character icon}} * {{tl|Item icon}} == Dependencies== For this template to work properly, you need the following: * The <code>.link-icon</code> class and any related classes, found in [[MediaWiki:Common.css]]. <noinclude>[[Category:Template documentation]]</noinclude> 654dfb540ea31a810ef53c3820862942e63b2e8a Template:Luadoc 10 105 120 2024-05-28T15:05:35Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <noinclude>[[Category:Documentation templates]]</noinclude><div class="luadoc">Edit the [[{{FULLPAGENAME}}/doc|documentation or categories]] for this module. {{#ifexist:{{FULLPAGENAME}}/i18n|This module has an [[/i18n|i18n file]].}}</div> 5df079d8f61782274d2ab1da5c43526c4229362c Template:MP link 10 106 121 2024-05-28T15:05:36Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{#if:{{{image|}}}|[[File:{{{image|}}}|{{{size|42px}}}|link={{{link|{{{1|}}}}}}]]}}<!-- -->{{#if:{{#pos:{{{link|}}}|http}}|[{{{link|}}} {{{1|}}}]|[[{{{link|{{{1|}}}}}}|{{{1|}}}]]}}</includeonly><noinclude> {{doc}} [[Category:Formatting templates]] </noinclude> b5f7c06404f70f0e717c635e4516a43801d501a6 Category:Templates 14 107 122 2024-05-28T15:06:23Z Geekette828 51691 Created page with "[[Category:Little-Known Galaxy Wiki]]" wikitext text/x-wiki [[Category:Little-Known Galaxy Wiki]] 8c15b305dace15f14f5e3fecb45a570bea2732b6 Template:MP link/doc 10 108 123 2024-05-28T15:06:38Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki This creates one of the stylized and formatted links on the [[{{SITENAME}}|main page]]. == Usage == Groups of this template should be wrapped inside of <code><nowiki><div class="mp-links"></div></nowiki></code> and each entry should be a separate line in an [[wikipedia:Help:Lists#Basically|unordered list]]. This div can be given one of the classes <code>columns-x</code> where x is a number from 1 to 5, and the links will line up in that many columns if space permits (default is 3). The div can also optionally be given the class <code>stretch</code> and it will stretch the list vertically to fill empty space. See [[Mediawiki:Common.css]] for the full definitions of these classes and styling for this template. ===Parameters=== <templatedata> { "description": { "en": "Creates stylized and formatted links on the main page." }, "format": "inline", "params": { "1": { "label": { "en": "Text" }, "description": { "en": "The text to display. If the link parameter is not given, this will also be the link target." }, "required": true, "example": "Stuff", "type": "string" }, "link": { "label": { "en": "Link" }, "description": { "en": "The target page for the link, if different than the display text." }, "required": false, "example": "Main Page", "type": "wiki-page-name" }, "image": { "label": { "en": "Image" }, "description": { "en": "An image to display with the link." }, "required": false, "suggested": true, "type": "wiki-file-name" }, "size": { "label": { "en": "Image size" }, "description": { "en": "The size of the image, in px." }, "required": false, "default": "42px", "type": "string" } }, "paramOrder": [ "1", "link", "image", "size" ] } </templatedata> ==Examples== <pre> <div class="mp-links columns-3"> * {{MP link|Stuff|link=Special:Random|image=Site-logo.png|size=42px}} * {{MP link|Things|link=Special:Random}} * {{MP link|Other stuff|link=Special:Random|image=Site-logo.png|size=42px}} </div> </pre> Produces: <div class="mp-links columns-3"> * {{MP link|Stuff|link=Special:Random|image=Site-logo.png|size=42px}} * {{MP link|Things|link=Special:Random}} * {{MP link|Other stuff|link=Special:Random|image=Site-logo.png|size=42px}} </div> <noinclude> [[Category:Template documentation]] </noinclude> 414ab9c9cbd6e62064acc46ccbd3768fa986c66b Template:Main 10 109 124 2024-05-28T15:06:40Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- -->{{#vardefine:text|<!-- start vd -->{{#if:{{{2|}}}<!-- if more than one page -->|[[{{{1}}}]]{{#if:{{{3|}}}<!-- start concat if -->|, [[{{{2}}}]] and [[{{{3}}}]]<!-- concat two -->|<nowiki> </nowiki>and [[{{{2}}}]]<!-- else; concat one -->}}<!-- end concat if -->|[[{{{1}}}]]<!-- else; one page only -->}}<!-- end if -->}}<!-- end vd -->{{Hatnote|<!-- -->{{#if:{{{2|}}}|Main Articles|Main Article}}: {{#var:text}}.<!-- -->}}<!-- --></includeonly><!-- --><noinclude>{{doc}}[[Category:Hatnote templates]]</noinclude> 6efc935aca87f0cd986b92de62e51203fd240f7e Template:Main/doc 10 110 125 2024-05-28T15:06:41Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <templatedata> { "params": { "1": { "label": "Article", "description": "A main article.", "example": "Article", "type": "wiki-page-name", "required": true }, "2": { "label": "Second Article", "description": "A second main article.", "example": "Second Article", "type": "wiki-page-name" }, "3": { "label": "Third Article", "description": "A third main article.", "example": "Third Article", "type": "wiki-page-name" } }, "description": "This hatnote template is meant to be in sections of an article mentioning information about another existing main article.", "paramOrder": [ "1", "2", "3" ], "format": "inline" } </templatedata> == Examples == {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{Main|Special:WantedPages}}</nowiki></code> || {{Main|Special:WantedPages}} |- | <code><nowiki>{{Main|Special:WantedPages#Section Title}}</nowiki></code> || {{Main|Special:WantedPages#Section Title}} |- | <code><nowiki>{{Main|Special:WantedPages|Special:UncategorizedPages}}</nowiki></code> || {{Main|Special:WantedPages|Special:UncategorizedPages}} |- | <code><nowiki>{{Main|Special:WantedPages|Special:UncategorizedPages|Special:UncategorizedCategories}}</nowiki></code> || {{Main|Special:WantedPages|Special:UncategorizedPages|Special:UncategorizedCategories}} |- | <code><nowiki>{{Main|Special:WantedPages{{!}}Page 1}}</nowiki></code> (Custom link label) || {{Main|Special:WantedPages{{!}}Page 1}} |} == Dependencies == This template requires the {{tl|Hatnote}} metatemplate. == Source == Roughly based on [[wikipedia:Template:For|Wikipedia's For Template]]. <noinclude>[[Category:Template documentation]]</noinclude> dd762adeece0f944821cb81ee14a8bd9cb539b22 Template:Merge 10 111 126 2024-05-28T15:06:42Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Ambox | color = purple | icon = Merge.svg | message = It has been proposed that this page be [[support:Merge|merged]] with [[{{{1}}}]]. | tiny = {{{tiny|}}} | class = {{{class|}}} | date = {{{date|}}} }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Candidates for merging]]}}</includeonly><!-- --><noinclude>{{Merge|Template:Merge|nocat=yes}} {{doc|Template:Ambox/doc}}</noinclude> 9975c110e793cc1943eac9ea8e62257d704ab853 Template:Merge/doc 10 112 127 2024-05-28T15:06:43Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Template:Ml 10 113 128 2024-05-28T15:06:44Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <code>{{[[Module:{{{1}}}|{{{1}}}]]}}<sup>m</sup>{{#if:{{{2|}}}|.{{{2}}}()}}</code><noinclude> * <code><nowiki>{{Ml|Example}}</nowiki></code> generates {{Ml|Example}}. * <code><nowiki>{{Ml|ProcessArgs|norm}}</nowiki></code> generates {{Ml|ProcessArgs|norm}}. [[Category:Formatting templates]] </noinclude> fbeb0794faecce9ff02ad11f9c7cb9dc8fdf4fec Template:Move 10 114 129 2024-05-28T15:06:45Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Ambox | color = darkorange | icon = Move.svg | message = It has been proposed that this page be moved to [[{{{1}}}]]. | tiny = {{{tiny|}}} | class = {{{class|}}} | date = {{{date|}}} }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Candidates for moving]]}}</includeonly><!-- --><noinclude>{{Move|Template:Ambox{{!}}Example|nocat=yes}} {{doc|Template:Ambox/doc}}</noinclude> dc4fd9090208e453457d6d2df193b9a7ee3b562d Template:Move/doc 10 115 130 2024-05-28T15:06:46Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Template:Navbox 10 116 131 2024-05-28T15:06:47Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude>[[Category:Navigation templates]] {{documentation}}</noinclude> 77a8826ed2275625c76b3bdbb1905ea21d63d23c Template:Navbox/doc 10 117 132 2024-05-28T15:06:48Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{UsesLua|Navbox}} This template allows a navigational template to be set up relatively quickly by supplying it with one or more lists of links. Using this template is highly recommended for standardization of navigational templates, and for ease of use. == Usage == Please remove the parameters that are left blank. <syntaxhighlight lang="wikitext" style="overflow: auto;">{{Navbox | name = {{subst:PAGENAME}} | title = | listclass = hlist | state = {{{state|}}} | above = | image = | group1 = | list1 = | group2 = | list2 = | group3 = | list3 = <!-- ... --> | below = }} </syntaxhighlight> == Parameter list == {{Navbox | name = Navbox/doc | state = uncollapsed | title = {{{title}}} | above = {{{above}}} | image = {{{image}}} | group1 = {{{group1}}} | list1 = {{{list1}}} | group2 = {{{group2}}} | list2 = {{{list2}}} | list3 = {{{list3}}} ''without {{{group3}}}'' | group4 = {{{group4}}} | list4 = {{{list4}}} | below = {{{below}}} }} The navbox uses lowercase parameter names, as shown in the box (''above''). The required ''name'' and ''title'' will create a one-line box if other parameters are omitted. Notice "group1" (etc.) is optional, as are sections named "above/below". {{clear}} The basic and most common parameters are as follows (see [[#Parameter descriptions|below]] for the full list): : <code>name</code> – the name of the template. : <code>title</code> – text in the title bar, such as: <nowiki>[[Widget stuff]]</nowiki>. : <code>class</code> - an optional CSS class for the entire navbox, to enable custom styling. : <code>listclass</code> – a CSS class for the list cells, usually <code>hlist</code> for horizontal lists. : <code>state</code> – controls when a navbox is expanded or collapsed. : <code>above</code> – text to appear above the group/list section (could be a list of overall wikilinks). : <code>image</code> – an optional right-side image, coded as the whole image. Typically it is purely decorative, so it should be coded as <code><nowiki>[[File:</nowiki><var>XX</var><nowiki>.jpg|80px|link=|alt=]]</nowiki></code>. : <code>imageleft</code> – an optional left-side image (code the same as the "image" parameter). : <code>group<sub>n</sub></code> – the left-side text before list-n (if group-n omitted, list-n starts at left of box). : <code>list<sub>n</sub></code> – text listing wikilinks using a [[wikipedia:Help:Lists|wikilist]] format. : <code>below</code> – optional text to appear below the group/list section. == Parameter descriptions == The following is a complete list of parameters for using {{tlx|Navbox}}. In most cases, the only required parameters are <code>name</code>, <code>title</code>, and <code>list1</code>. === Setup parameters === :; ''name'' :: The name of the template, which is needed for the "V&nbsp;• T&nbsp;• E" ("View&nbsp;• Talk&nbsp;• Edit") links to work properly on all pages where the template is used. You can enter <code><nowiki>{{subst:PAGENAME}}</nowiki></code> for this value as a shortcut. The name parameter is only mandatory if a <code>title</code> is specified, and the <code>border</code> parameter is not set, and the <code>navbar</code> parameter is not used to disable the navbar. :; ''state'' <span style="font-weight:normal;">[<code>autocollapse, collapsed, expanded, plain, off</code>]</span> :* Defaults to <code>autocollapse</code>. A navbox with <code>autocollapse</code> will start out collapsed if there are two or more tables on the same page that use other collapsible tables. Otherwise, the navbox will be expanded. :* If set to <code>collapsed</code>, the navbox will always start out in a collapsed state. :* If set to <code>expanded</code>, the navbox will always start out in an expanded state. :* If set to <code>plain</code>, the navbox will always be expanded with no [hide] link on the right, and the title will remain centered (by using padding to offset the <small>V&nbsp;• T&nbsp;• E</small> links). :* If set to <code>off</code>, the navbox will always be expanded with no [hide] link on the right, but no padding will be used to keep the title centered. This is for advanced use only; the "plain" option should suffice for most applications where the [show]/[hide] button needs to be hidden. : To show the box when standalone (non-included) but then auto-hide contents when in an article, put "expanded" inside <code>&lt;noinclude|&gt;</code>...<code>&lt;/noinclude|&gt;</code> tags. This setting will force the box visible when standalone (even when followed by other boxes), displaying "[hide]", but then it will auto-collapse the box when stacked inside an article: :: <code><nowiki>| state =&nbsp;</nowiki></code><code>&lt;noinclude|&gt;</code>expanded<code>&lt;/noinclude|&gt;</code> : Often times, editors will want a default initial state for a navbox, which may be overridden in an article. Here is the trick to do this: :* In your intermediate template, create a parameter also named "state" as a pass-through like this: :: <code><nowiki>| state = {{{state<includeonly>|your_desired_initial_state</includeonly>}}}</nowiki></code> :* The <code>&lt;includeonly&gt;</code><code>|</code> will make the template expanded when viewing the template page by itself. :; ''navbar'' :: If set to <code>plain</code>, the <span style="font-size: 88%;">V&nbsp;• T&nbsp;• E</span> links on the left side of the titlebar will not be displayed, and padding will be automatically used to keep the title centered. Use <code>off</code> to remove the <span style="font-size: 88%;">V&nbsp;• T&nbsp;• E</span> links, but not apply padding (this is for advanced use only; the "plain" option should suffice for most applications where a navbar is not desired). It is highly recommended that one not hide the navbar, in order to make it easier for users to edit the template, and to keep a standard style across pages. : ''See later section on [[#Child navboxes|using navboxes within one another]] for examples and a more complete description.'' If set to <code>child</code> or <code>subgroup</code>, then the navbox can be used as a borderless child that fits snugly in another navbox. The border is hidden and there is no padding on the sides of the table, so it fits into the ''list'' area of its parent navbox. If set to <code>none</code>, then the border is hidden and padding is removed, and the navbox may be used as a child of another container (do not use the <code>none</code> option inside of another navbox; similarly, only use the <code>child</code>/<code>subgroup</code> option inside of another navbox). If set to anything else (default), then a regular navbox is displayed with a 1px border. An alternate way to specify the border to be a subgroup style is like this (i.e. use the first unnamed parameter instead of the named ''border'' parameter): :<pre>{{Navbox|child|...}}</pre> === Cells === ; ''title''* : Text that appears centered in the top row of the table. It is usually the template's topic, i.e. a succinct description of the body contents. This should be a single line, but if a second line is needed, use <code><nowiki>{{-}}</nowiki></code> to ensure proper centering. This parameter is technically not mandatory, but using {{tl|Navbox}} is rather pointless without a title. ; ''above''* : A full-width cell displayed between the titlebar and first group/list, i.e. ''above'' the template's body (groups, lists and image). In a template without an image, ''above'' behaves in the same way as the ''list1'' parameter without the ''group1'' parameter. ; ''group<sub>n</sub>''* : (i.e. ''group1'', ''group2'', etc.) If specified, text appears in a header cell displayed to the left of ''list<sub>n</sub>''. If omitted, ''list<sub>n</sub>'' uses the full width of the table. ; ''list<sub>n</sub>''* : (i.e. ''list1'', ''list2'', etc.) The body of the template, usually a list of links. Format is inline, although the text can be entered on separate lines if the entire list is enclosed within <code><nowiki><div> </div></nowiki></code>. At least one ''list'' parameter is required; each additional ''list'' is displayed in a separate row of the table. Each ''list<sub>n</sub>'' may be preceded by a corresponding ''group<sub>n</sub>'' parameter, if provided (see below). :Entries should be separated using a newline and an asterisk (*). If instead two asterisks are used, it provides [[wikipedia:Nesting (computing)|nesting]] within the previous entry by enclosing the entry with brackets. Increasing the number of asterisks used increases the number of brackets around entries. ; ''imageleft''* : An image to be displayed in a cell below the title and to the left of the body (lists). For the image to display properly, the ''list1'' parameter must be specified and no groups can be specified. It accepts the same sort of parameter that ''image'' accepts. ; ''below''* : A full-width cell displayed ''below'' the template's body (groups, lists and image). == Layout of table == ===Without image, above and below=== Table generated by {{tl|Navbox}} '''without''' ''image'', ''above'' and ''below'' parameters: {{Navbox | name = Navbox/doc | state = uncollapsed | title = {{{title}}} | group1 = {{{group1}}} | list1 = {{{list1}}} | group2 = {{{group2}}} | list2 = {{{list2}}} | list3 = {{{list3}}} ''without {{{group3}}}'' | group4 = {{{group4}}} | list4 = {{{list4}}} }} ===With image, above and below=== Table generated by {{tl|Navbox}} '''with''' ''image'', ''above'' and ''below'' parameters: {{Navbox | name = Navbox/doc | state = uncollapsed | image = {{{image}}} | title = {{{title}}} | above = {{{above}}} | group1 = {{{group1}}} | list1 = {{{list1}}} | group2 = {{{group2}}} | list2 = {{{list2}}} | list3 = {{{list3}}} ''without {{{group3}}}'' | group4 = {{{group4}}} | list4 = {{{list4}}} | below = {{{below}}} }} ===With image and without groups=== Table generated by {{tl|Navbox}} '''with''' ''image'', ''imageleft'', ''lists'', and '''without''' ''groups'', ''above'', ''below'': {{Navbox | name = Navbox/doc | state = uncollapsed | image = {{{image}}} | imageleft = {{{imageleft}}} | title = {{{title}}} | list1 = {{{list1}}} | list2 = {{{list2}}} | list3 = {{{list3}}} | list4 = {{{list4}}} }} == Examples == == TemplateData == <templatedata> { "params": { "state": { "label": "State", "description": "Controls when a navbox is expanded or collapsed", "example": "autocollapse", "suggestedvalues": [ "autocollapse", "collapsed", "expanded", "plain", "off" ], "default": "autocollapse", "suggested": true }, "title": { "label": "Title", "description": "Text in the title bar; centered in the top row of the table. Usually the template's topic.", "example": "[[Template:Navbox]]", "suggested": true }, "above": { "label": "Above", "description": "Full-width cell displayed between the titlebar and first group/list, i.e. above the template's body (groups, lists and image)", "type": "string", "suggested": true }, "image": { "label": "Image", "description": "Image to be displayed in a cell below the title and to the right of the body", "example": "[[File:XX.jpg | 80px | link= | alt= ]]", "type": "wiki-file-name", "suggested": true }, "group1": { "label": "Group 1", "description": "If specified, text appears in a header cell displayed to the left of list 1. If omitted, list 1 uses the full width of the table.", "suggested": true }, "list1": { "label": "List 1", "description": "Body of the template; usually a list of links. Format is inline. At least one list parameter is required; each additional list is displayed in a separate row of the table. Each listn may be preceded by a corresponding groupn parameter.\nEntries should be separated using a newline and an asterisk. If two asterisks are used, it provides nesting within the previous entry with brackets.", "required": true, "suggested": true }, "group2": { "suggested": true }, "list2": { "suggested": true }, "list3": { "suggested": true }, "group3": { "suggested": true }, "group4": {}, "list4": {}, "below": { "label": "Below", "description": "Full-width cell displayed below the template's body.", "suggested": true }, "imageleft": { "label": "Image left", "description": "Image to be displayed in a cell below the title and to the left of the body. For the image to display properly, list1 parameter must be specified and no groups can be specified.", "example": "[[File:XX.jpg | 80px | link= | alt= ]]", "type": "wiki-file-name" }, "name": { "label": "Name", "description": "The name of the template. Needed for \"View • Talk • Edit\" links to work properly.", "type": "string", "default": "{{subst:PAGENAME}}", "suggested": true }, "class": { "label": "Navbox class", "description": "CSS class for the navbox.", "example": "navbox-items", "type": "string" }, "listclass": { "label": "List class", "description": "CSS class for the list cells, usually hlist for horizontal lists.", "example": "hlist", "type": "string" }, "navbar": { "label": "Navbar status", "example": "plain, off", "type": "string" }, "border": { "label": "Border status", "example": "child, subgroup, none", "type": "string" }, "evenodd": { "suggestedvalues": [ "swap", "even", "odd", "off" ] } }, "description": "Creates a navigational box for links to other pages.", "paramOrder": [ "name", "title", "class", "group1", "list1", "listclass", "state", "above", "below", "image", "group2", "list2", "group3", "list3", "group4", "list4", "imageleft", "navbar", "border", "evenodd" ] } </templatedata> <noinclude>[[Category:Template documentation]]</noinclude> 49b0f6f3b5d3ee9f666852d6bb4ce22bdbc8e5eb Template:NoDirectUse 10 118 133 2024-05-28T15:06:50Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:No direct use]] 8448af1f61f0d64a84806b006c70670d9296acde Template:No direct use 10 119 134 2024-05-28T15:06:51Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{ambox|icon=Warning-red.svg|title='''Don't call this template directly from any content page!''' |message=This template is intended to be used inside of another template. Then that template in turn may be used on content pages. |color=red }}</includeonly><noinclude>{{documentation}} [[Category:Notice templates]]</noinclude> 72f49bdd34be1bcb8d1a6f91015ddce6912103db Template:No direct use/doc 10 120 135 2024-05-28T15:06:52Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:Ambox/doc]] 68bfb03f8f28c95443c7b1997f252c236bf87256 Template:No wrap 10 121 136 2024-05-28T15:06:53Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:Nowrap]] 269180d5083536bbbf72d889477805cfde7aac9e Template:Normal 10 122 137 2024-05-28T15:06:54Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <span style{{=}}"font-weight:normal; font-style:normal">{{{1}}}</span><noinclude> {{documentation}} </noinclude> f1d74e033cde1ce3b2efdc98b78fb863b8524fcf Template:Nowrap 10 123 138 2024-05-28T15:06:55Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <span class="nowrap">{{{1}}}</span><noinclude> {{documentation}} </noinclude> 8817bafce418a08a72f3425283fc03d04a2d8d44 Template:Pipe 10 124 139 2024-05-28T15:06:57Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki &#124;<noinclude>{{documentation}}</noinclude> 9d1875aa686e4e25a0994448a39d057e91541788 Template:Pipe/doc 10 125 140 2024-05-28T15:06:58Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:((/doc]] 509bb731d447456a18489848c8a1ce38feddabcc Template:Quote 10 126 141 2024-05-28T15:06:59Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- --><div class="quote"><!-- start quote wrapper --><div class="marks-wrapper"><!-- start marks wrapper --><div class="block"><!-- start quote block -->{{#if:{{{title|}}}|<div class="title">{{{title}}}</div>|}}<!-- -->{{#if:{{{text|{{{1|}}}}}}|<div class="text">{{{text|{{{1|}}}}}}</div>|}}<!-- --></div><!-- end quote block --></div><!-- end marks wrapper -->{{#if:{{{author|}}}|<div class="author">― {{#if:{{{authorpage|}}}| [[{{{authorpage}}}|{{{author}}}]] | {{{author}}} }}</div>|}}<!-- --></div></includeonly><noinclude>{{Documentation}}[[Category:Formatting templates]]</noinclude> 4068bd07d27429291e64025ee67d91eaf78fe06e Template:Quote/doc 10 127 142 2024-05-28T15:07:00Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <templatedata> { "params": { "title": { "label": "Title", "description": "If the quote as a title, put it here.", "example": "Quote's Title", "type": "line" }, "text": { "label": "Quoted Text", "description": "The quoted text to be displayed.", "example": "Example quote text here.", "type": "string", "required": true }, "author": { "label": "Quote's Author", "description": "The author of the displayed quote.", "example": "John Doe", "type": "line", "suggested": true }, "authorpage": { "label": "Author's Page", "description": "If the quote's author has a page on the Wiki, put the page name here.", "example": "John Doe", "type": "wiki-page-name", "suggested": true } }, "description": "This template creates a styled block element for quotes.", "paramOrder": [ "text", "author", "authorpage", "title" ], "format": "block" } </templatedata> == Examples == {| class="wikitable" ! Code !! Result |- | <pre>{{Quote|text=Text content here.}}</pre> || {{Quote|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eget ligula eu lectus lobortis condimentum. Aliquam nonummy auctor massa. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla at risus. Quisque purus magna, auctor et, sagittis ac, posuere eu, lectus. Nam mattis, felis ut adipiscing.}} |- | <pre>{{Quote |title=Title |text=Text content here. }}</pre> || {{Quote|title=Title|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eget ligula eu lectus lobortis condimentum. Aliquam nonummy auctor massa. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla at risus. Quisque purus magna, auctor et, sagittis ac, posuere eu, lectus. Nam mattis, felis ut adipiscing.}} |- | <pre>{{Quote |title=Title |text=Text content here. |author=Author }}</pre> || {{Quote|title=Title|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eget ligula eu lectus lobortis condimentum. Aliquam nonummy auctor massa. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla at risus. Quisque purus magna, auctor et, sagittis ac, posuere eu, lectus. Nam mattis, felis ut adipiscing.|author=Author}} |- | <pre>{{Quote |title=Title |text=Text content here. |author=Author |authorpage=Author Page }}</pre> || {{Quote|title=Title|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eget ligula eu lectus lobortis condimentum. Aliquam nonummy auctor massa. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla at risus. Quisque purus magna, auctor et, sagittis ac, posuere eu, lectus. Nam mattis, felis ut adipiscing.|author=Author|authorpage=Author Page}} |- | <pre>{{Quote |title=Text content here. |author=Author |authorpage=Author Page }}</pre> || {{Quote|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eget ligula eu lectus lobortis condimentum. Aliquam nonummy auctor massa. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla at risus. Quisque purus magna, auctor et, sagittis ac, posuere eu, lectus. Nam mattis, felis ut adipiscing.|author=Author|authorpage=Author Page}} |} == Dependencies == For this template to work properly, you need the following: * The <code>.quote</code> and any related classes, found in [[MediaWiki:Common.css]]. <noinclude>[[Category:Template documentation]]</noinclude> c00197137eecde64fc76b4bd45f59efdc131f182 Template:Documentation 10 66 143 67 2024-05-28T15:07:01Z Geekette828 51691 wikitext text/x-wiki <includeonly><!-- --><div class="documentation"><!-- --><div class="documentation-header"><!-- -->[[File:Template-{{#ifexist:{{#vardefineecho:docpage|{{{1|Template:{{#replace:{{{1|{{PAGENAME}}/doc}}}|Template:|}}}}}<!-- end vde -->}}|{{#if:{{{baddoc|}}}|bad}}|no}}info.svg|50px|link=]] <!-- --><span style="font-weight: bold; font-size: 125%; margin-right: 10px;">Documentation</span> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!--nothing-->|<!-- -->{{#ifexist:{{#var:docpage}}|<!-- --><span style="font-size: 90%; font-style: italic;"><!-- -->[{{fullurl:{{#var:docpage}}|action=edit}} Edit] this documentation at [{{fullurl:{{#var:docpage}}|redirect=no}} {{FULLPAGENAMEE:{{#var:docpage}}}}].<!-- --></span><!-- -->}}<!-- -->}}<!-- --><div style="float: right; margin-left: 5px;"><!-- -->[{{fullurl:{{FULLPAGENAMEE}}|action=purge}} purge]<!-- --></div><!-- --></div><!-- <!-- leave line break here --> {{#if:{{{lua|}}}|{{UsesLua|{{{lua}}} }} }} <!-- documentation text/error box begins here --> <div style="border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: 0.5em auto 1em; padding: 0.8em 1.2em; background: var(--wiki-content-background-color--secondary);"> <!-- -->{{#ifexist:{{#var:docpage}}|<!-- If there is documentation --> {{ {{#var:docpage}} }} <!-- Else -->|<!-- -->No documentation subpage exists yet for this template. [{{fullurl:{{FULLPAGENAMEE:Template:{{{1|{{PAGENAME}}}}}}}/doc|action=edit&preload=Template:Doc/preload}} Create one now].<!-- -->[[Category:Templates with no documentation]]<!-- -->}}<!-- leave line break here --> <!-- documentation text/error box ends here --> </div> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!-- -->{{#ifeq:{{BASEPAGENAME}}|Doc|<!--nothing-->|<!-- only if page is not Template:Doc -->This is the documentation page, it should be transcluded into the main template page. See {{tlx|doc}} for more information. <!-- -->[[Category:Template documentation]]<!-- -->}}<!-- -->}}<!-- --></div><!-- --></includeonly><!-- --><noinclude>{{Documentation}} [[Category:Documentation templates]] </noinclude> 70d0bbc31f4f4539f31e92c0338023093c4cf835 Template:Split 10 128 144 2024-05-28T15:07:01Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- -->{{#vardefine:pages|<!-- start vd -->{{#if:{{{2|}}}<!-- if more than one page -->|new pages titled [[{{{1}}}]]{{#if:{{{3|}}}<!-- start concat if -->|, [[{{{2}}}]] and [[{{{3}}}]]<!-- concat two -->|<nowiki> </nowiki>and [[{{{2}}}]]<!-- else; concat one -->}}<!-- end concat if -->|a new page titled [[{{{1}}}]]<!-- else; one page only -->}}<!-- end if -->}}<!-- end vd -->{{Ambox | color = purple | icon = Split.svg | message = It has been proposed that this page be split into {{#var:pages}}. | tiny = {{{tiny|}}} | class = {{{class|}}} | date = {{{date|}}} }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Candidates for splitting]]}}</includeonly><!-- --><noinclude>{{Split|Template:Ambox{{!}}Example|nocat=yes}} {{Split|Template:Ambox{{!}}Example 1|Template:Ambox{{!}}Example 2|Template:Ambox{{!}}Example 3|nocat=yes}} {{doc|Template:Ambox/doc}}</noinclude> 73f5044c8b972e18c3b7880f94b0644e4a0e6ac7 Template:Split/doc 10 129 145 2024-05-28T15:07:03Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Template:Spoiler 10 130 146 2024-05-28T15:07:04Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- Base code written for Terraria Wiki: https://terraria.wiki.gg/wiki/Template:Spoiler NOTE: This template needs a JavaScript function in MediaWiki:Common.js or MediaWiki:Vector.js to work, as well as styling in MediaWiki:Common.css or MediaWiki:Vector.css for the related classes --><span class="spoiler-content {{{class|}}}" id="{{{id|}}}" style="{{{css|{{{style|}}}}}}"><span>{{{1|}}}</span></span><!-- --></includeonly><noinclude> {{doc}} [[Category:Formatting templates]] </noinclude> 77445d8bb567ea7e24ff01afea601393d29dd3f9 Template:Spoiler/doc 10 131 147 2024-05-28T15:07:05Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <templatedata> { "params": { "1": { "aliases": [ "text" ], "label": "Text", "description": "The text to be shown.", "example": "Character A died during the battle.", "type": "content", "required": true }, "hover": { "label": "Show on Hover?", "description": "Show spoiler text on mouse hover.", "example": "hover=yes", "type": "boolean", "default": "hover=no" } }, "description": "This template can be used to mark text as a spoiler.", "maps": { "1": {} }, "paramOrder": [ "1", "hover" ], "format": "inline" } </templatedata> == The hoverShowSpoilers gadget == Users can enable {{gad|hoverShowSpoilers}} to make spoilers show on hover, not just on click. The code for this gadget can be found at {{gad|hoverShowSpoilers.css}}. == Examples == {| class="wikitable" ! Code !! Result |- | <code><nowiki>{{spoiler|spoiler text}}</nowiki></code> (Click to toggle) || {{spoiler|spoiler text}} |- | <code><nowiki>{{spoiler|spoiler text with a [[Template:Navbox|link]]}}</nowiki></code> (Click to toggle) || {{spoiler|spoiler text with a [[Template:Navbox|link]]}} |} == Dependencies == For this template to work properly, you need the following: * The small JavaScript code for toggling the <code>.spoiler</code> class on/off on click, found in [[MediaWiki:Common.js]]. * The <code>.spoiler-content</code> and any related classes, found in [[MediaWiki:Common.css]]. == Source == Base code adapted from [https://terraria.wiki.gg/wiki/Template:Spoiler Template:Spoiler on Terraria Wiki]. <noinclude>[[Category:Template documentation]]</noinclude> 0a47f2e840d579e339ed92445d2dba4a32cd76fe Template:Spoiler warning 10 132 148 2024-05-28T15:07:06Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{Ambox | color = red | icon = Warning-red.svg | title = Spoiler Warning | message = This page contains '''spoilers'''. View at your own discretion. | tiny = {{{tiny|}}} | class = {{{class|}}} }}<noinclude>{{doc}}</noinclude> 06bff33f547d6b08794a2f9b6537b19478b2866e Template:Spoiler warning/doc 10 133 149 2024-05-28T15:07:07Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Template:Stub 10 134 150 2024-05-28T15:07:08Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Ambox | color = gold | icon = Stub.svg | message = This page is a [[support:Stub|stub]]. You can help '''{{SITENAME}}''' by [{{fullurl:{{FULLPAGENAME}}|action=edit}} expanding it]. | tiny = {{{tiny|}}} | class = {{{class|}}} | date = {{{date|}}} }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Stubs]]}}</includeonly><!-- --><noinclude>{{Stub|nocat=yes}} {{doc|Template:Ambox/doc}}</noinclude> 1effeb7d6eb04a0b11c76b8bfa871703461c9344 Template:Stub/doc 10 135 151 2024-05-28T15:07:09Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:Ambox/doc]] 68bfb03f8f28c95443c7b1997f252c236bf87256 Template:Tl 10 136 152 2024-05-28T15:07:10Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <code style="white-space: nowrap;">{{[[Template:{{{1}}}|{{{1}}}]]}}</code><noinclude> {{documentation}} [[Category:Formatting templates]] </noinclude> 2ad76a8ea6275cccf4d31437a65d0f96f38d0d76 Template:Tl/doc 10 137 153 2024-05-28T15:07:11Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki This template returns an exemplaric use of a template while linking to the template description page, if the template exists. == Usage == <pre> {{tl|<Template name>}} {{tl|<Template name>|<Template parameters>}} </pre> ; ''unnamed parameter'' 1 : Template name (without <code>Template:</code> prefix) ; ''unnamed parameter'' 2 - 9 : Optional. Template parameters ; nl : Optional flag to display an un-linked template usage. === Parameters with “{{=}}” === Use <code><nowiki>{{=}}</nowiki></code> instead of a normal equality symbol when using Tl. == Examples == : <code><nowiki>{{tl|stub}}</nowiki></code> returns {{tl|stub}} : <code><nowiki>{{tl|stub|1}}</nowiki></code> returns {{tl|stub|1}} : <code><nowiki>{{tl|stub|1|2|nl=y}}</nowiki></code> returns {{tl|stub|1|2|nl=y}} : <code><nowiki>{{tl|for|page|t1{{=}}alt text}}</nowiki></code> returns {{tl|for|page|t1{{=}}alt text}} == See also == <includeonly> [[Category:Formatting templates]] </includeonly> <noinclude>[[Category:Template documentation]]</noinclude> 48e07b1b084b6ba94dd927943e5366520082f9fd Template:Tlx 10 138 154 2024-05-28T15:07:13Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Template:Tl]] af3906f239c45d791753d3170c656eddd6d1af5f Template:UsesLua 10 139 155 2024-05-28T15:07:14Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Uses Lua]] 9675a92267565619bc6418ec4e88163985302408 Template:Uses Lua 10 140 156 2024-05-28T15:07:15Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly>{{Ambox | color = darkblue | icon = Lua logo.svg | title= This template uses one or more modules written in the Lua programming language. | message = For more information, see [https://en.wikipedia.org/wiki/Wikipedia:Lua Wikipedia:Lua] or the [https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual Lua reference manual] on mediawiki.org. Modules used include: {{#if:{{{1|}}}|{{#arraymap:{{{1|}}}|,|%s|'''[[Module:%s|%s]]'''}}|''None provided''}}. | tiny = {{{tiny|}}} | class = {{{class|}}} }}</includeonly><noinclude>{{doc}}</noinclude> 19e22db3328c786bcdcbae7409f7cc40b1e464bf Template:Uses Lua/doc 10 141 157 2024-05-28T15:07:16Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #REDIRECT [[Template:Ambox/doc]] 286a3914c1d2770ff27394ac3d3f36a685542cb8 Category:Candidates for deletion 14 142 158 2024-05-28T15:07:18Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Little-Known Galaxy Wiki 14 143 159 2024-05-28T15:07:19Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki This is the top-level category. It contains meta categories and pages about the wiki. 8935f2b3e97edfeadd7bb206f1e17c03099ec24a Category:Documentation templates 14 144 160 2024-05-28T15:07:20Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Formatting templates 14 145 161 2024-05-28T15:07:21Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Hatnote templates 14 146 162 2024-05-28T15:07:23Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Hidden categories 14 147 163 2024-05-28T15:07:24Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki These categories are hidden on article pages. [[Category:Wiki maintenance]] e4d17499a8377d3f2b4b4a618a671e53111f43ca Category:Images 14 148 164 2024-05-28T15:08:26Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Media]] b141d2b9971d6efe9f59bd03449781e71411c631 Category:Infobox templates 14 149 165 2024-05-28T15:08:27Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Key template documentation 14 150 166 2024-05-28T15:08:28Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Template documentation]] e65ecf60878d4707b3b4c1e3962615e2d5f3b2ab Category:Legal notices 14 151 167 2024-05-28T15:08:29Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 Category:License templates 14 152 168 2024-05-28T15:08:30Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Logos 14 153 169 2024-05-28T15:08:31Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Maps failing data validation 14 154 170 2024-05-28T15:08:32Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ __HIDDENCAT__ [[Category:Wiki maintenance]] 57e36e9878c3eb806aa6ee6f748a5c5e0cdd5a97 Category:Media 14 155 171 2024-05-28T15:08:34Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 Category:Navigation templates 14 156 172 2024-05-28T15:08:35Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Notice templates 14 157 173 2024-05-28T15:08:36Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Pages containing omitted template arguments 14 158 174 2024-05-28T15:08:37Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages including data maps 14 159 175 2024-05-28T15:08:39Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __HIDDENCAT__ [[Category:Wiki maintenance]] 5f66cb55d9f6d00a2b708f502911f1eb94dca6b5 Category:Pages including data maps failing validation 14 160 176 2024-05-28T15:08:40Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ __HIDDENCAT__ [[Category:Wiki maintenance]] 57e36e9878c3eb806aa6ee6f748a5c5e0cdd5a97 Category:Pages setting LuaCache keys 14 161 177 2024-05-28T15:08:41Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ __HIDDENCAT__ [[Category:Wiki maintenance]] 57e36e9878c3eb806aa6ee6f748a5c5e0cdd5a97 Category:Pages using DynamicPageList3 dplvar parser function 14 162 178 2024-05-28T15:08:42Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __HIDDENCAT__ [[Category:Wiki maintenance]] 5f66cb55d9f6d00a2b708f502911f1eb94dca6b5 Category:Pages using DynamicPageList3 parser function 14 163 179 2024-05-28T15:08:43Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __HIDDENCAT__ [[Category:Wiki maintenance]] 5f66cb55d9f6d00a2b708f502911f1eb94dca6b5 Category:Pages using TabberTransclude parser tag 14 164 180 2024-05-28T15:08:44Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __HIDDENCAT__ [[Category:Wiki maintenance]] 5f66cb55d9f6d00a2b708f502911f1eb94dca6b5 Category:Pages using Tabber parser tag 14 165 181 2024-05-28T15:08:45Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __HIDDENCAT__ [[Category:Wiki maintenance]] 5f66cb55d9f6d00a2b708f502911f1eb94dca6b5 Category:Pages using duplicate arguments in template calls 14 166 182 2024-05-28T15:08:46Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages where expansion depth is exceeded 14 167 183 2024-05-28T15:08:47Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages where template include size is exceeded 14 168 184 2024-05-28T15:08:48Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages where the unstrip depth limit is exceeded 14 169 185 2024-05-28T15:08:49Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages where the unstrip size limit is exceeded 14 170 186 2024-05-28T15:08:50Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with broken file links 14 171 187 2024-05-28T15:08:51Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Wiki maintenance]] 197b5fc8ebad5537759adacc0079b4b2662cb4c4 Category:Pages with ignored display titles 14 172 188 2024-05-28T15:08:53Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with math errors 14 173 189 2024-05-28T15:08:54Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with non-numeric formatnum arguments 14 174 190 2024-05-28T15:08:55Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Wiki maintenance]] 197b5fc8ebad5537759adacc0079b4b2662cb4c4 Category:Pages with reference errors 14 175 191 2024-05-28T15:08:56Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with script errors 14 176 192 2024-05-28T15:08:57Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with syntax highlighting errors 14 177 193 2024-05-28T15:08:58Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with template loops 14 178 194 2024-05-28T15:08:59Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Pages with too many expensive parser function calls 14 179 195 2024-05-28T15:09:00Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Promotional images 14 180 196 2024-05-28T15:09:02Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki Official images used for purposes of promoting the game, that may not actually represent gameplay. [[Category:Images]] 80b893c439747ce681cf18cc579c3bc4c65cd502 Category:Stubs 14 181 197 2024-05-28T15:09:03Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Wiki maintenance]] 786037995b8f7e89762a8ea13b84ade091453c00 Category:Template documentation 14 182 198 2024-05-28T15:09:04Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Templates]] [[Category:Wiki maintenance]] c1800be0da4588b3b652fa5324aade2c496fb3c5 Category:Wiki maintenance 14 183 199 2024-05-28T15:09:06Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki The sub-categories of this category contain pages that have been identified as needing attention for one or more of the following reasons: * Changes have been suggested that should be discussed first or are under discussion. * The page has flaws that need addressing by an editor with the knowledge or skills to help. * The action the page needs requires special rights. ''See also:'' * [[Special:BrokenRedirects|Broken redirects]] * [[Special:DoubleRedirects|Double redirects]] * [[Special:UncategorizedCategories|Uncategorized categories]] * [[Special:UncategorizedFiles|Uncategorized files]] * [[Special:UncategorizedPages|Uncategorized pages]] * [[Special:UncategorizedTemplates|Uncategorized templates]] * [[Special:WantedCategories|Wanted categories]] * [[Special:WantedFiles|Wanted files]] * [[Special:WantedPages|Wanted pages]] * [[Special:WantedTemplates|Wanted templates]] * [[Special:TrackingCategories|Other special tracking categories]] [[Category:{{SITENAME}}]] 4b90dc0dbd8c91e131e4ffcf22360b1c837b9717 Category:Wiki skin images 14 184 200 2024-05-28T15:10:08Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Module:ArgsUtil 828 185 201 2024-05-28T15:10:10Z RheingoldRiver 2743 Adding default set of pages Scribunto text/plain local p = {} function p.merge() local f = mw.getCurrentFrame() local origArgs = f.args local parentArgs = f:getParent().args local args = {} for k, v in pairs(origArgs) do v = mw.text.trim(tostring(v)) if v ~= '' then args[k] = v end end for k, v in pairs(parentArgs) do v = mw.text.trim(v) if v ~= '' then args[k] = v end end return args end return p 1d1b2105bd857dcc5e33c8c0a8a780f67cbae72e Module:ArgsUtil/doc 828 186 202 2024-05-28T15:10:11Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki This is a basic module for processing args. Usage: <syntaxhighlight lang="lua"> local util_args = require('Module:ArgsUtil') local p = {} function p.main(frame) local args = util_args.merge() -- it is not necessary to pass a `frame` object; `merge` will generate its own mw.logObject(args) -- `args` now contains args passed via the template merged with defaults provided directly via the invoke. -- anything the user sent via the template will be given priority. end return p </syntaxhighlight> == Extending this module == By design, {{ml|ArgsUtil}} is shipped with only a single function and no customization available; this simplifies documentation and covers nearly all use cases. An extended version of this module is available at [[support:Module:ArgsUtil|Module:ArgsUtil on the support wiki]] if you want additional functionality; and you can of course feel free to modify this module on your own wiki as needed. 6fc2a23dcff62ac5a222903e46bc56c07b0a2b1f Module:Infobox 828 187 203 2024-05-28T15:10:12Z RheingoldRiver 2743 Adding default set of pages Scribunto text/plain local counter -- default value to show if a param is missing in some but not all tabs. -- set to `nil` (not in quotes) to remove such rows altogether in the tabs where they're missing local TABBED_NONEXIST = '' local h = {} local p = {} function p.arraymap(frame) -- a lua implementation of Page Forms' arraymap local args = h.overwrite() local items = h.split(args[1], args[2] or ',') for i, item in ipairs(items) do items[i] = args[4]:gsub(args[3], item) end return table.concat(items, args[5] or ',') end function p.preprocess(frame) return frame:preprocess(frame.args[1] or frame:getParent().args[1]) end function p.main(frame) h.increment() local args = h.overwrite() local sep = args.sep or ',' h.castArgs(args, sep) h.setMainImage(args.images[1]) return h.makeInfobox(args, sep) end function h.increment() counter = mw.getCurrentFrame():callParserFunction('#var', {'DRUID_INFOBOX_ID', 0}) + 1 mw.getCurrentFrame():callParserFunction('#vardefine', {'DRUID_INFOBOX_ID', counter}) end function h.castArgs(args, sep) args.tabs = h.split(args.tabs or args.image_labels, sep) args.images = h.getImages(args, sep) args.sections = h.split(args.sections, sep) for _, section in ipairs(args.sections) do args[section] = h.split(args[section], sep) end end function h.getImages(args, sep) if args.image and not args.images then args.images = args.image end if args.images then return h.split(args.images, sep) end if not args.tabs then return {} end local ret = {} for _, key in ipairs(args.tabs) do if args[key .. '_image'] then ret[#ret+1] = args[key .. '_image'] end end return ret end function h.setMainImage(file) if not file then return end mw.getCurrentFrame():callParserFunction{ name = '#setmainimage', args = { file:gsub('File:', '') }, } end function h.makeInfobox(args, sep) local out = mw.html.create('table') :addClass('druid-infobox') :addClass('druid-container') :attr('id', 'druid-container-' .. counter) if args.kind then out:addClass('druid-container-' .. h.escape(args.kind)) end if args.title then out:tag('tr') :tag('th') :addClass('druid-title') :attr('colspan', 2) :wikitext(args.title) end h.printImages(out, args.images, args) for _, section in ipairs(args.sections) do -- cannot begin tagging here because we don't know if any applicable args are present local cols = args[section .. '_columns'] local makeSection = cols and h.makeGridSection or h.makeSection out:node(makeSection(section, args[section], args, tonumber(cols))) end return out end function h.printImages(out, images, args) if #images == 0 and #args.tabs == 0 then return end -- burden is on the user to format this as an image. this should be done in the infobox template, -- with something like |image={{#if:{{{image|}}}|[[File:{{{image|}}}{{!}}300px{{!}}link=]]}} local td = out:tag('tr') :tag('td') :attr('colspan', 2) h.printTabs(td, args.tabs, images, args) if #images == 0 then return end if #images == 1 then td:addClass('druid-main-image') :wikitext(images[1]) return end td:addClass('druid-main-images') local imagesContainer = td:tag('div') :addClass('druid-main-images-files') for i, item in ipairs(images) do local container = imagesContainer:tag('div') :addClass('druid-main-images-file') :addClass('druid-toggleable') :attr('data-druid', counter .. '-' .. i) :wikitext(item) local labelText = args[item .. '_label'] or item or ('[[Category:Infoboxes missing image labels]]Image ' .. i) if args[labelText .. '_caption'] then container:tag('div') :addClass('druid-main-images-caption') :wikitext(args[labelText .. '_caption']) end if i == 1 then container:addClass('focused') end end end function h.printTabs(td, tabs, images, args) if #tabs == 0 and #images <= 1 then return end local container = td:tag('div') :addClass('druid-main-images-labels') :addClass('druid-tabs') if #tabs == 0 then for i, _ in ipairs(images) do local labelText = '[[Category:Infoboxes missing image labels]]Image ' .. i h.printTab(container, labelText, i) end return end for i, item in ipairs(tabs) do local labelText = args[item .. '_label'] or item h.printTab(container, labelText, i) end end function h.printTab(container, text, i) local label = container:tag('div') :addClass('druid-main-images-label') :addClass('druid-tab') :addClass('druid-toggleable') :attr('data-druid', counter .. '-' .. i) :wikitext(text) if i == 1 then label:addClass('focused') end end function h.makeGridSection(section, sectionFields, args, numCols) local shouldPrint = false local node = mw.html.create() h.printSectionHeader(node, section, args) local tr = node:tag('tr') :attr('data-druid-section-row', h.escape(section)) if args[section .. '_collapsed'] then tr:addClass('druid-collapsed') end local grid = tr:tag('td') :attr('colspan', 2) :addClass('druid-grid-section') :addClass('druid-grid-section-' .. h.escape(section)) :tag('div') :addClass('druid-grid') local row = 1 local col = 1 local itemContainer for _, item in ipairs(sectionFields) do if args[item] then shouldPrint = true itemContainer = grid:tag('div') :addClass('druid-grid-item') :addClass('druid-grid-item-' .. h.escape(item)) :css('grid-column', col) :css('grid-row', row) if not args[item .. '_nolabel'] then h.printLabel(itemContainer:tag('div'), item, args) end h.printData(itemContainer:tag('div'), item, args) if col == numCols then row = row + 1 col = 1 else col = col + 1 end end end grid:css('grid-template-columns', ('repeat(%s, 1fr)'):format(row > 1 and numCols or col - 1)) if not shouldPrint then return nil end itemContainer:css('grid-column', ('%s / -1'):format(col - 1)) return node end function h.makeSection(section, sectionFields, args) local shouldPrint = false local node = mw.html.create() h.printSectionHeader(node, section, args) for _, item in ipairs(sectionFields) do if h.shouldPrint(item, args) then shouldPrint = true local tr = node:tag('tr') :addClass('druid-row') :addClass('druid-row-' .. h.escape(item)) :attr('data-druid-section-row', h.escape(section)) if args[section .. '_collapsed'] then tr:addClass('druid-collapsed') end if args[item .. '_wide'] or args[item .. '_nolabel'] then local td = h.printData(tr:tag('td'), item, args) td :attr('colspan', 2) :addClass('druid-data-wide') else h.printLabel(tr:tag('th'), item, args) h.printData(tr:tag('td'), item, args) end end end if not shouldPrint then return nil end return node end function h.shouldPrint(item, args) if args[item] then return true end for _, key in ipairs(args.tabs) do if args[key .. '_' .. item] then return true end end return false end function h.printLabel(node, item, args) return node :addClass('druid-label') :addClass('druid-label-' .. h.escape(item)) :wikitext(args[item .. '_display'] or args[item .. '_label'] or item) end function h.printData(node, item, args) if not args.tabs or #args.tabs == 0 then h.printSimpleData(node, item, args) return node end if not h.hasComplexData(item, args) then h.printSimpleData(node, item, args) return node end for i, label in ipairs(args.tabs) do local div = node:tag('div') :addClass('druid-toggleable-data') :addClass('druid-toggleable') :attr('data-druid', counter .. '-' .. i) if h.getTabbedContent(args, label, item) then div:wikitext('\n\n' .. h.getTabbedContent(args, label, item)) else div:addClass('druid-toggleable-data-empty') end if i == 1 then div:addClass('focused') end end return node end function h.getTabbedContent(args, label, item) return args[label .. '_' .. item] or args[item] or TABBED_NONEXIST end function h.printSimpleData(node, item, args) node:addClass('druid-data') :addClass('druid-data-' .. h.escape(item)) :wikitext('\n\n' .. args[item]) end function h.hasComplexData(item, args) for _, v in ipairs(args.tabs) do if args[v .. '_' .. item] then return true end end return false end function h.printSectionHeader(node, section, args) if args[section .. '_nolabel'] then return end local tr = node:tag('tr') :attr('data-druid-section', h.escape(section)) local th = tr:tag('th') :attr('colspan', 2) :addClass('druid-section') :addClass('druid-section-' .. h.escape(section)) if args[section .. '_collapsible'] then tr:addClass('druid-collapsible') if args[section .. '_collapsed'] then tr:addClass('druid-collapsible-collapsed') end end local emptySections = {} for _, label in ipairs(args.tabs) do local hasLabel = false for _, item in ipairs(args[section] or {}) do if h.getTabbedContent(args, label, item) then hasLabel = true end end if not hasLabel then emptySections[label] = true end end if not next(emptySections) then th:wikitext(args[section .. '_label'] or section) return end for i, label in ipairs(args.tabs) do local div = th:tag('div') :addClass('druid-toggleable-heading') :addClass('druid-toggleable') :attr('data-druid', counter .. '-' .. i) :wikitext(args[section .. '_label'] or section) -- we are going to print the section content even in empty nodes -- for compatibility with browsers without :has, where hiding empty rows won't happen if emptySections[label] then div:addClass('druid-toggleable-heading-empty') end if i == 1 then div:addClass('focused') end end end function h.overwrite() -- this is a generic utility function that collects args from the invoke call & the parent template. -- normally, you merge args with parent template overwriting the invoke call, but -- since we'll be putting markup/formatting into our invoke call, -- we actually want to overwrite what the user sent. local f = mw.getCurrentFrame() local origArgs = f.args local parentArgs = f:getParent().args local args = {} for k, v in pairs(parentArgs) do v = mw.text.trim(v) if v ~= '' then args[k] = v end end for k, v in pairs(origArgs) do v = mw.text.trim(tostring(v)) if v ~= '' then args[k] = v end end return args end -- generic utility functions -- these would normally be provided by other modules, but to make installation easy -- I'm including everything here function h.split(text, pattern, plain) if not text then return {} end local ret = {} for m in h.gsplit(text, pattern, plain) do ret[#ret+1] = m end return ret end function h.gsplit( text, pattern, plain ) if not pattern then pattern = ',' end if not plain then pattern = '%s*' .. pattern .. '%s*' end local s, l = 1, text:len() return function () if s then local e, n = text:find( pattern, s, plain ) local ret if not e then ret = text:sub( s ) s = nil elseif n < e then -- Empty separator! ret = text:sub( s, e ) if e < l then s = e + 1 else s = nil end else ret = e > s and text:sub( s, e - 1 ) or '' s = n + 1 end return ret end end, nil, nil end function h.escape(s) s = s:gsub(' ', '') :gsub('"', '') :gsub("'", '') :gsub("%?", '') :gsub("%%", '') :gsub("%[", '') :gsub("%]", '') :gsub("{", '') :gsub("}", '') :gsub("!", '') return s end return p 406af727258b941fab09583f2fb7cc93bdcd1c95 Module:Infobox/doc 828 188 204 2024-05-28T15:10:13Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki {{luadoc}} This module enables the creation of [[support:DRUID infoboxes|DRUID infoboxes]]. 2b023f1deb004fc1cb66271c10ccc2d99cc17c3d Module:Navbox 828 189 205 2024-05-28T15:10:15Z RheingoldRiver 2743 Adding default set of pages Scribunto text/plain local p = {} local getArgs -- lazily initialized local args local format = string.format local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function add_link(link_description, ul, is_mini) local l if link_description.url then l = {'[', '', ']'} else l = {'[[', '|', ']]'} end ul:tag('li') :addClass('nv-' .. link_description.full) :wikitext(l[1] .. link_description.link .. l[2]) :tag(is_mini and 'abbr' or 'span') :attr('title', link_description.html_title) :wikitext(is_mini and link_description.mini or link_description.full) :done() :wikitext(l[3]) :done() end local function make_list(title_text, has_brackets, is_mini) local title = mw.title.new(mw.text.trim(title_text), 'Template') if not title then error('Invalid title ' .. title_text) end local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or '' local link_descriptions = { { ['mini'] = 'v', ['full'] = 'view', ['html_title'] = 'View this template', ['link'] = title.fullText, ['url'] = false }, { ['mini'] = 'e', ['full'] = 'edit', ['html_title'] = 'Edit this template', ['link'] = title:fullUrl('action=edit'), ['url'] = true }, { ['mini'] = 'h', ['full'] = 'hist', ['html_title'] = 'History of this template', ['link'] = title:fullUrl('action=history'), ['url'] = true }, } local ul = mw.html.create('ul') if has_brackets then ul:addClass('navbar-brackets') end for _, description in ipairs(link_descriptions) do add_link(description, ul, is_mini) end return ul:done() end local function navbar(args) local is_collapsible = args.collapsible local is_mini = args.mini local is_plain = args.plain local collapsible_class = nil if is_collapsible then collapsible_class = 'navbar-collapse' if not is_plain then is_mini = 1 end end local div = mw.html.create():tag('div') div :addClass('navbar') :addClass('plainlinks') :addClass('hlist') :addClass(collapsible_class) -- we made the determination earlier if is_mini then div:addClass('navbar-mini') end local box_text = (args.text or 'This box: ') .. ' ' -- the concatenated space guarantees the box text is separated if not (is_mini or is_plain) then div :tag('span') :addClass('navbar-boxtext') :wikitext(box_text) end local template = args.template local has_brackets = args.brackets local title_arg = get_title_arg(is_collapsible, template) local title_text = args[title_arg] or (':' .. mw.getCurrentFrame():getParent():getTitle()) local list = make_list(title_text, has_brackets, is_mini) div:node(list) if is_collapsible then local title_text_class if is_mini then title_text_class = 'navbar-ct-mini' else title_text_class = 'navbar-ct-full' end div:done() :tag('div') :addClass(title_text_class) :wikitext(args[1]) end return tostring(div:done()) end local function striped(wikitext, border) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category that is removed -- by parent navboxes. The result is that the category shows all pages -- where a child navbox is not contained in a parent navbox. if border == 'subgroup' and args['orphan'] ~= 'yes' then -- No change; striping occurs in outermost navbox. return wikitext end local first, second = 'odd', 'even' if args['evenodd'] then if args['evenodd'] == 'swap' then first, second = second, first else first = args['evenodd'] second = first end end local changer if first == second then changer = first else local index = 0 changer = function (code) if code == '0' then -- Current occurrence is for a group before a nested table. -- Set it to first as a valid although pointless class. -- The next occurrence will be the first row after a title -- in a subgroup and will also be first. index = 0 return first end index = index + 1 return index % 2 == 1 and first or second end end return (wikitext:gsub('\127_ODDEVEN(%d?)_\127', changer)) -- () omits gsub count end local function processItem(item, nowrapitems) if item:sub(1, 2) == '{|' then -- Applying nowrap to lines in a table does not make sense. -- Add newlines to compensate for trim of x in |parm=x in a template. return '\n' .. item ..'\n' end if nowrapitems == 'yes' then local lines = {} for line in (item .. '\n'):gmatch('([^\n]*)\n') do local prefix, content = line:match('^([*:;#]+)%s*(.*)') if prefix and not content:match('^<span class="nowrap">') then line = format('%s<span class="nowrap">%s</span>', prefix, content) end table.insert(lines, line) end item = table.concat(lines, '\n') end if item:match('^[*:;#]') then return '\n' .. item ..'\n' end return item end -- we will want this later when we want to add tstyles for hlist/plainlist local function has_navbar() return args['navbar'] ~= 'off' and args['navbar'] ~= 'plain' and ( args['name'] or mw.getCurrentFrame():getParent():getTitle():gsub('/sandbox$', '') ~= 'Template:Navbox' ) end local function renderNavBar(titleCell) if has_navbar() then titleCell:wikitext(navbar{ [1] = args['name'], ['mini'] = 1, }) end end local function renderTitleRow(tbl) if not args['title'] then return end local titleRow = tbl:tag('tr') local titleCell = titleRow:tag('th'):attr('scope', 'col') local titleColspan = 2 if args['imageleft'] then titleColspan = titleColspan + 1 end if args['image'] then titleColspan = titleColspan + 1 end titleCell :addClass('navbox-title') :attr('colspan', titleColspan) renderNavBar(titleCell) titleCell :tag('div') -- id for aria-labelledby attribute :attr('id', mw.uri.anchorEncode(args['title'])) :addClass('navbox-title-text') :wikitext(processItem(args['title'])) tbl:tag('tr') :addClass('navbox-spacer') end local function getAboveBelowColspan() local ret = 2 if args['imageleft'] then ret = ret + 1 end if args['image'] then ret = ret + 1 end return ret end local function renderAboveRow(tbl) if not args['above'] then return end tbl:tag('tr') :tag('td') :addClass('navbox-abovebelow') :attr('colspan', getAboveBelowColspan()) :tag('div') -- id for aria-labelledby attribute, if no title :attr('id', args['title'] and nil or mw.uri.anchorEncode(args['above'])) :wikitext(processItem(args['above'], args['nowrapitems'])) tbl:tag('tr') :addClass('navbox-spacer') end local function renderBelowRow(tbl) if not args['below'] then return end tbl:tag('tr') :addClass('navbox-spacer') tbl:tag('tr') :tag('td') :addClass('navbox-abovebelow') :attr('colspan', getAboveBelowColspan()) :tag('div') :wikitext(processItem(args['below'], args['nowrapitems'])) end local function renderListRow(tbl, index, listnum, listnums_size) if index > 1 then tbl:tag('tr') :addClass('navbox-spacer') end local row = tbl:tag('tr') if index == 1 and args['imageleft'] then row :tag('td') :addClass('noviewer') :addClass('navbox-image') :css('width', '1px') -- Minimize width :css('padding', '0 2px 0 0') :attr('rowspan', listnums_size) :tag('div') :wikitext(processItem(args['imageleft'])) end local group_and_num = format('group%d', listnum) if args[group_and_num] then local groupCell = row:tag('th') -- id for aria-labelledby attribute, if lone group with no title or above if listnum == 1 and not (args['title'] or args['above'] or args['group2']) then groupCell :attr('id', mw.uri.anchorEncode(args['group1'])) end groupCell :attr('scope', 'row') :addClass('navbox-group') groupCell :wikitext(args[group_and_num]) end local listCell = row:tag('td') if args[group_and_num] then listCell :addClass('navbox-list-with-group') else listCell:attr('colspan', 2) end local list_and_num = format('list%d', listnum) local listText = args[list_and_num] local oddEven = '\127_ODDEVEN_\127' if listText:sub(1, 12) == '</div><table' then -- Assume list text is for a subgroup navbox so no automatic striping for this row. oddEven = listText:find('<th[^>]*"navbox%-title"') and '\127_ODDEVEN0_\127' or 'odd' end local listclass_and_num = format('list%dclass', listnum) listCell :addClass('navbox-list') :addClass('navbox-' .. oddEven) :addClass(args['listclass']) :addClass(args[listclass_and_num]) :tag('div') :wikitext(processItem(listText, args['nowrapitems'])) if index == 1 and args['image'] then row :tag('td') :addClass('noviewer') :addClass('navbox-image') :css('width', '1px') -- Minimize width :css('padding', '0 0 0 2px') :attr('rowspan', listnums_size) :tag('div') :wikitext(processItem(args['image'])) end end local function renderMainTable(border, listnums) local tbl = mw.html.create('table') :addClass('nowraplinks') local state = args['state'] if args['title'] and state ~= 'plain' and state ~= 'off' then if state == 'collapsed' then state = 'mw-collapsed' end tbl :addClass('mw-collapsible') :addClass(state or 'autocollapse') end if border == 'subgroup' or border == 'none' then tbl :addClass('navbox-subgroup') else -- regular navbox tbl :addClass('navbox-inner') end renderTitleRow(tbl) renderAboveRow(tbl) local listnums_size = #listnums for i, listnum in ipairs(listnums) do renderListRow(tbl, i, listnum, listnums_size) end renderBelowRow(tbl) return tbl end function p._navbox(navboxArgs) args = navboxArgs local listnums = {} for k, _ in pairs(args) do if type(k) == 'string' then local listnum = k:match('^list(%d+)$') if listnum then table.insert(listnums, tonumber(listnum)) end end end table.sort(listnums) local border = mw.text.trim(args['border'] or args[1] or '') if border == 'child' then border = 'subgroup' end -- render the main body of the navbox local tbl = renderMainTable(border, listnums) local res = mw.html.create() -- render the appropriate wrapper for the navbox, based on the border param if border == 'none' then local nav = res:tag('div') :attr('role', 'navigation') :node(tbl) -- aria-labelledby title, otherwise above, otherwise lone group if args['title'] or args['above'] or (args['group1'] and not args['group2']) then nav:attr( 'aria-labelledby', mw.uri.anchorEncode( args['title'] or args['above'] or args['group1'] ) ) else nav:attr('aria-label', 'Navbox') end elseif border == 'subgroup' then -- We assume that this navbox is being rendered in a list cell of a -- parent navbox, and is therefore inside a div with padding:0em 0.25em. -- We start with a </div> to avoid the padding being applied, and at the -- end add a <div> to balance out the parent's </div> res :wikitext('</div>') :node(tbl) :wikitext('<div>') else local nav = res:tag('div') :attr('role', 'navigation') :addClass('navbox') :addClass(args['class']) :node(tbl) -- aria-labelledby title, otherwise above, otherwise lone group if args['title'] or args['above'] or (args['group1'] and not args['group2']) then nav:attr( 'aria-labelledby', mw.uri.anchorEncode(args['title'] or args['above'] or args['group1']) ) else nav:attr('aria-label', 'Navbox') end end return striped(tostring(res), border) end function p.navbox(frame) if not getArgs then getArgs = require('Module:ArgsUtil').merge end args = getArgs() -- Read the arguments in the order they'll be output in, to make references -- number in the right order. local _ _ = args['title'] _ = args['above'] -- Limit this to 20 as covering 'most' cases (that's a SWAG) and because -- iterator approach won't work here for i = 1, 20 do _ = args[format('group%d', i)] _ = args[format('list%d', i)] end _ = args['below'] return p._navbox(args) end return p b883ff63b1b77f6419fcf3bb09db9d456e3839bb Template:Recipe/Cargo declare 10 190 206 2024-05-28T15:19:00Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Recipes |product=String |yield=Integer |machine=String |time=String |recipesource=String |recipeId=string }} [[Category:Cargo declaration templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Recipes |product=String |yield=Integer |machine=String |time=String |recipesource=String |recipeId=string }} [[Category:Cargo declaration templates]] d57d786a3141e977eafae9b2294f3f423cb2e699 Category:Cargo declaration templates 14 191 207 2024-05-28T15:19:19Z Geekette828 51691 Created page with "[[Category:Cargo templates]]" wikitext text/x-wiki [[Category:Cargo templates]] 895c24e543bceae97cfc01094d7b079ed93b91ab Category:Cargo templates 14 192 208 2024-05-28T15:19:27Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:T 10 193 209 2024-05-28T15:20:56Z Geekette828 51691 Created page with "<onlyinclude><nowiki>{{</nowiki>{{#if:{{{prefix|}}}|{{{prefix}}}:}}[[Template:{{{1}}}|{{{1}}}]]<!-- -->{{#if:{{{2|}}}|&#124;<span style="color:#555;">''&lt;{{{2}}}&gt;''</span>}}<!-- -->{{#if:{{{3|}}}|&#124;<span style="color:#555;">''&lt;{{{3}}}&gt;''</span>}}<!-- -->{{#if:{{{4|}}}|&#124;<span style="color:#555;">''&lt;{{{4}}}&gt;''</span>}}<!-- -->{{#if:{{{5|}}}|&#124;<span style="color:#555;">''&lt;{{{5}}}&gt;''</span>}}<!-- -->{{#if:{{{6|}}}|&#124;<span style="color:..." wikitext text/x-wiki <onlyinclude><nowiki>{{</nowiki>{{#if:{{{prefix|}}}|{{{prefix}}}:}}[[Template:{{{1}}}|{{{1}}}]]<!-- -->{{#if:{{{2|}}}|&#124;<span style="color:#555;">''&lt;{{{2}}}&gt;''</span>}}<!-- -->{{#if:{{{3|}}}|&#124;<span style="color:#555;">''&lt;{{{3}}}&gt;''</span>}}<!-- -->{{#if:{{{4|}}}|&#124;<span style="color:#555;">''&lt;{{{4}}}&gt;''</span>}}<!-- -->{{#if:{{{5|}}}|&#124;<span style="color:#555;">''&lt;{{{5}}}&gt;''</span>}}<!-- -->{{#if:{{{6|}}}|&#124;<span style="color:#555;">''&lt;{{{6}}}&gt;''</span>}}<!-- -->{{#if:{{{7|}}}|&#124;<span style="color:#555;">''&lt;{{{7}}}&gt;''</span>}}<!-- -->{{#if:{{{8|}}}|&#124;<span style="color:#555;">''&lt;{{{8}}}&gt;''</span>}}<!-- -->{{#if:{{{9|}}}|&#124;<span style="color:#555;">''&lt;{{{9}}}&gt;''</span>}}<!-- -->{{#if:{{{10|}}}|&#124;<span style="color:#555;">''&lt;{{{10}}}&gt;''</span>}}<!-- -->{{#if:{{{11|}}}|&#124;<span style="color:#555;">''&lt;{{{11}}}&gt;''</span>}}<!-- -->{{#if:{{{12|}}}|&#124;<span style="color:#555;">''&lt;{{{12}}}&gt;''</span>}}<!-- -->{{#if:{{{13|}}}|&#124;<span style="color:#555;">''&lt;{{{13}}}&gt;''</span>}}<!-- -->{{#if:{{{14|}}}|&#124;<span style="color:#555;">''&lt;{{{14}}}&gt;''</span>}}<!-- -->{{#if:{{{15|}}}|&#124;<span style="color:#555;">''&lt;{{{15}}}&gt;''</span>}}<!-- -->{{#if:{{{16|}}}|&#124;<span style="color:#555;">''&lt;{{{16}}}&gt;''</span>}}<!-- -->{{#if:{{{17|}}}|&#124;<span style="color:#555;">''&lt;{{{17}}}&gt;''</span>}}<!-- -->{{#if:{{{18|}}}|&#124;<span style="color:#555;">''&lt;{{{18}}}&gt;''</span>}}<!-- -->{{#if:{{{19|}}}|&#124;<span style="color:#555;">''&lt;{{{19}}}&gt;''</span>}}<!-- -->{{#if:{{{20|}}}|&#124;<span style="color:#555;">''&lt;{{{20}}}&gt;''</span>}}<!-- -->{{#if:{{{21|}}}|&#124;<span style="color:#555;">''&lt;{{{21}}}&gt;''</span>}}<!-- --><nowiki>}}</nowiki></onlyinclude><noinclude>{{documentation}}</noinclude> 4273916fece7a96eef48125efb615009a1fd6fe6 Template:Recipe/doc 10 194 210 2024-05-28T15:21:14Z Geekette828 51691 Created page with "This template is part of the {{T|Recipe}} group of templates. '''Related templates, modules, and tables:'''<br> *{{t|Recipe ingredients}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Recipe |product = Name of item. If left blank will take the {{PAGENAME}} (optional). (plain text string) |machine = Name of the machine this recipe is crafted at. (plain text string) |ingredients = List of ingredients to make this recipe. Separated by ";". Use * to indicate a..." wikitext text/x-wiki This template is part of the {{T|Recipe}} group of templates. '''Related templates, modules, and tables:'''<br> *{{t|Recipe ingredients}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Recipe |product = Name of item. If left blank will take the {{PAGENAME}} (optional). (plain text string) |machine = Name of the machine this recipe is crafted at. (plain text string) |ingredients = List of ingredients to make this recipe. Separated by ";". Use * to indicate an amount of an item. (plain text string) |time = Time it takes for the recipe to be complete (e.g 2hr or 20m). (plain text string) |yield = If this recipe yields more than one product (optional). (numeric) |recipeSource = How to obtain this recipe. (plain text string) |id = If there is more than one recipe to craft the item, this must be incremented so each recipe on the page has a unique id. If left blank it will default to "1". (numeric) }} </syntaxhighlight> &nbsp; ed829c0970786ae449227dbe7ac4e273ab9be73a 223 210 2024-05-28T15:34:24Z Geekette828 51691 wikitext text/x-wiki This template is part of the {{T|Recipe}} group of templates. '''Related templates, modules, and tables:'''<br> *{{t|Recipe/Cargo declare}} *{{t|Recipe ingredients}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Recipe |product = Name of item. If left blank will take the {{PAGENAME}} (optional). (plain text string) |machine = Name of the machine this recipe is crafted at. (plain text string) |ingredients = List of ingredients to make this recipe. Separated by ";". Use * to indicate an amount of an item. (plain text string) |time = Time it takes for the recipe to be complete (e.g 2hr or 20m). (plain text string) |yield = If this recipe yields more than one product (optional). (numeric) |recipeSource = How to obtain this recipe. (plain text string) |id = If there is more than one recipe to craft the item, this must be incremented so each recipe on the page has a unique id. If left blank it will default to "1". (numeric) }} </syntaxhighlight> &nbsp; 47c6ecc54bda9d498435e06b29a0d38882589858 Template:Recipe 10 195 211 2024-05-28T15:21:43Z Geekette828 51691 Created page with "<includeonly> |- |{{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }}{{#if: {{{yield|}}} |<!-- If yield is true-->&nbsp;<small>({{{yield|}}})</small> |<!-- If yield is false-->}} |{{#titleparts:{{{machine|}}}}} |{{{time|}}} <!-- Setting if equals to namespace 0 store the data -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Recipes |product={{#if: {{{product|}}} | {{#titleparts:{{{product|}}}..." wikitext text/x-wiki <includeonly> |- |{{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }}{{#if: {{{yield|}}} |<!-- If yield is true-->&nbsp;<small>({{{yield|}}})</small> |<!-- If yield is false-->}} |{{#titleparts:{{{machine|}}}}} |{{{time|}}} <!-- Setting if equals to namespace 0 store the data -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Recipes |product={{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |yield={{{yield|}}} |machine={{#titleparts:{{{machine|}}}}} |time={{{time|}}} |recipeSource={{{recipeSource|}}} |recipeId={{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}} }}<!-- Defining the recipieID variable, so it can be sent to the Recipe ingredients template -->{{#vardefine:recipeId|{{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}}<!-- end vardefine -->}}<!-- Sending the ingredients and quantity to the Recipe ingredients template, where it will be parsed out and stored in the Recipe_ingredients table. -->{{#arraymaptemplate:{{{ingredients|}}}|Recipe ingredients|;|}}<!-- End if equals-->}}</includeonly><noinclude> {{#cargo_attach:_table=Recipes}}{{documentation}} [[Category:Templates]] [[Category:Cargo store templates]] </noinclude> 561bc1073b497b1dc2282ac5ff5698ebc00f4c75 Template:Documentation 10 66 212 143 2024-05-28T15:25:13Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <includeonly><!-- --><div class="documentation"><!-- --><div class="documentation-header"><!-- -->[[File:Template-{{#ifexist:{{#vardefineecho:docpage|{{{1|Template:{{#replace:{{{1|{{PAGENAME}}/doc}}}|Template:|}}}}}<!-- end vde -->}}|{{#if:{{{baddoc|}}}|bad}}|no}}info.svg|50px|link=]] <!-- --><span style="font-weight: bold; font-size: 125%; margin-right: 10px;">Documentation</span> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!--nothing-->|<!-- -->{{#ifexist:{{#var:docpage}}|<!-- --><span style="font-size: 90%; font-style: italic;"><!-- -->[{{fullurl:{{#var:docpage}}|action=edit}} Edit] this documentation at [{{fullurl:{{#var:docpage}}|redirect=no}} {{FULLPAGENAMEE:{{#var:docpage}}}}].<!-- --></span><!-- -->}}<!-- -->}}<!-- --><div style="float: right; margin-left: 5px;"><!-- -->[{{fullurl:{{FULLPAGENAMEE}}|action=purge}} purge]<!-- --></div><!-- --></div><!-- <!-- leave line break here --> {{#if:{{{lua|}}}|{{UsesLua|{{{lua}}} }} }} <!-- documentation text/error box begins here --> <div style="border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: 0.5em auto 1em; padding: 0.8em 1.2em; background: var(--wiki-content-background-color--secondary);"> <!-- -->{{#ifexist:{{#var:docpage}}|<!-- If there is documentation --> {{ {{#var:docpage}} }} <!-- Else -->|<!-- -->No documentation subpage exists yet for this template. [{{fullurl:{{FULLPAGENAMEE:Template:{{{1|{{PAGENAME}}}}}}}/doc|action=edit&preload=Template:Doc/preload}} Create one now].<!-- -->[[Category:Templates with no documentation]]<!-- -->}}<!-- leave line break here --> <!-- documentation text/error box ends here --> </div> <!-- -->{{#ifeq:{{SUBPAGENAME}}|doc|<!-- -->{{#ifeq:{{BASEPAGENAME}}|Doc|<!--nothing-->|<!-- only if page is not Template:Doc -->This is the documentation page, it should be transcluded into the main template page. See {{tlx|doc}} for more information. <!-- -->[[Category:Template documentation]]<!-- -->}}<!-- -->}}<!-- --></div><!-- --></includeonly><!-- --><noinclude>{{Documentation}} [[Category:Documentation templates| ]] </noinclude> 5e49b1b7e058769b5c2e3e9cc00ddf9271ed8bb8 Template:Recipe/header 10 196 213 2024-05-28T15:25:19Z Geekette828 51691 Created page with "<includeonly>{| !Product !!Ingredients !!Machine !!Time</includeonly><noinclude>[[Category:Runner templates]]</noinclude>" wikitext text/x-wiki <includeonly>{| !Product !!Ingredients !!Machine !!Time</includeonly><noinclude>[[Category:Runner templates]]</noinclude> 2d617082bfcdc28d7bc29b1ebfe85f39e45858d2 Template:Recipe/footer 10 197 214 2024-05-28T15:26:01Z Geekette828 51691 Created page with "<includeonly>|}</includeonly><noinclude>[[Category:Runner templates]]</noinclude>" wikitext text/x-wiki <includeonly>|}</includeonly><noinclude>[[Category:Runner templates]]</noinclude> f0ff6413a62f46a1eec12b3746b4f0027e49e445 Category:Runner templates 14 198 215 2024-05-28T15:26:11Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Templates 14 107 216 122 2024-05-28T15:30:05Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 Category:Templates with no documentation 14 67 217 68 2024-05-28T15:30:06Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki __EXPECTUNUSEDCATEGORY__ [[Category:Templates]] [[Category:Wiki maintenance]] b1ff76c0593194e53e6bf42f37ca337a5493c57e Little-Known Galaxy Wiki 0 199 218 2024-05-28T15:30:15Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki <!-- IF YOU'RE LOOKING TO USE THIS MESSAGE AS A MAIN PAGE, DO NOT. PLEASE FOLLOW THE INSTRUCTIONS. THIS MESSAGE IS JUST HERE TO WELCOME YOU TO YOUR NEW WIKI, AND TO GUIDE YOU THROUGH THE INITIAL STEPS OF WORKING WITH MEDIAWIKI AND OUR ON-BOARDING PROCESS. THIS IS NOT MEANT TO BE REMADE INTO A MAIN PAGE. --> <div style="text-align: center"> <h1 style="color: #ff1980; font-weight: 700; border-bottom: 0">Welcome to wiki.gg!</h1> Your wiki has been prepared with several [[mw:Help:Templates|templates]] and [[support:Help:CSS|CSS pages]] that will help you get started. </div><!-- -->{{#vardefine:gutter-styles|style="display: flex; flex-wrap: wrap; gap: 1em; justify-content: center; margin-top: 1em; --wiki-content-link-color: #6d8afb; --wiki-content-link-color--visited: var(--wiki-content-link-color);"}}<!-- -->{{#vardefine:guide-box-styles-lvl1|style="border: 2px solid #ff1980; border-radius: 4px; padding: 0 1.2em 0.8em; background: #710e3a; color: #fff; font-size: 1.2em; flex-basis: 550px; box-shadow: 0 0 1.3rem #0003"}}<!-- -->{{#vardefine:guide-box-styles-lvl2|style="border: 2px solid #771c45; border-radius: 4px; padding: 0 1.2em 0.8em; background: #371524; color: #fff; font-size: 1.05em; flex-basis: 550px; box-shadow: 0 0 1.3rem #0003"}}<!-- -->{{#vardefine:guide-box-styles-lvl3|style="border: 2px solid #771c45; border-radius: 4px; padding: 0 1.2em 0.8em; background: #37363736; font-size: 0.98em; flex-basis: 550px; box-shadow: 0 0 1.3rem #0003"}}<!-- -->{{#vardefine:guide-heading-styles|style="font-weight: 700; border-bottom: 0; color: inherit"}} <div {{#var:gutter-styles}}> <div {{#var:guide-box-styles-lvl1}}> <h2 {{#var:guide-heading-styles}}>1. If you haven't yet,</h2> please log in ([[support:Logging into an onboarding wiki|help, how do I log in?]]) (you will need to create a new account if you haven't previously edited wiki.gg wikis). If your wiki has been imported and you've had an account on the original site, please [[Special:ClaimExternalAccount|claim your username]] instead. </div> <div {{#var:guide-box-styles-lvl1}}> <h2 {{#var:guide-heading-styles}}>2. Logged in now?</h2> Let's make an edit! Add your user name on this next line after it says "My name is:" (Hint, using Ctrl+F for nearby keywords can help. Bananas.) <!-- Here! --> ''My name is:'' Congratulations! You have now edited your wiki! </div> <div {{#var:guide-box-styles-lvl1}}> <h2 {{#var:guide-heading-styles}}>3. Get administrator rights</h2> Leave your wiki user name in your on-boarding channel, so we may grant you administrator permissions. These will let you delete pages, restrict who can edit a page, and you'll also be able to theme your wiki later. If your account was imported, it '''must''' be reclaimed first. </div> </div> <div {{#var:gutter-styles}}> <div {{#var:guide-box-styles-lvl2}}> <h2 {{#var:guide-heading-styles}}>Setting up the main page</h2> # Pick one of the example main pages and "move" (under the "More" dropdown in the upper-right-hand corner of your window) it to <code>{{int:Mainpage}}</code>. #* It'll ask you if you're ''sure'' you want to move the page since there's some content here now. You should say yes, delete the content. You can access this content on the [[support:Default main page|support wiki]] at any point in the future. #* Here are the main pages you can pick from & move to <code>{{int:Mainpage}}</code>: #** [[Example Main Page 1]] #** [[Example Main Page 2]] # Visit [[Special:AllPages]] and delete any example pages you no longer need. If you want, you can do this in bulk with [[Special:Nuke]], entering the pattern <code>Example %</code>. Limit it to the namespace <code>(Main)</code>, the first option in the "namespace" dropdown. </div> <div {{#var:guide-box-styles-lvl2}}> <h2 {{#var:guide-heading-styles}}>Theming</h2> # Use [[Special:Upload]] to upload a favicon called <code>Site-favicon.ico</code>. This icon is shown on your browser's tab bar, next to the page's title. It should be 48x48px and look good at 16x16px. # Use [[Special:Upload]] to upload a wiki logo called <code>Site-logo.png</code>. For most wikis, this should be 160x160px. # Protect the favicon and the logo, so only administrators may edit and replace them. # Customize your theme by editing the variables at [[MediaWiki:Common.css]]. Remember to use Ctrl+F5 or Ctrl+Shift+R to cache-refresh in your browser after making any changes! #* Pages in the "MediaWiki" namespace are protected by default, and only your wiki's administrators can edit them. #* You may want to learn [https://river.me/blog/dev-tools/ how to use your browser's dev tools] to help in styling. #* Remember to protect any additional files you upload for your theme! </div> <div {{#var:guide-box-styles-lvl2}}> <h2 {{#var:guide-heading-styles}}>Sidebar links</h2> Edit [[MediaWiki:Sidebar]] to customize the navigation menu on the left. You can remove the "Customizing this wiki" section if you want, but you may want to bookmark those links first. </div> </div> <h2 style="color: #ff1980; font-weight: 700; border-bottom: 0; text-align: center; margin-top: 3em">Frequently asked questions</h2> <div {{#var:gutter-styles}}> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I make a new page?</h2> Click ''[[Special:NewPage|New page]]'' on the sidebar to the left. This link will always be visible from the sidebar, and you can also bookmark that page if you want. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I rename a page?</h2> In the upper-right-hand corner of the page there's a dropdown menu. Renaming in MediaWiki is called "moving" so click "Move" and you'll be able to choose a new name. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>When should I make the wiki public?</h2> As soon as possible! We require you to have a logo [[Special:Upload|uploaded]] called <code>Site-logo.png</code> and a favicon [[Special:Upload|uploaded]] called <code>Site-favicon.ico</code>. (Ignore any warnings you see when uploading those two files.)<br><br>You may also want to customize your theme a bit and replace the contents of this page with your own main page content. But once there is even 1 content page, people can start finding your wiki useful, so you should plan to "release" it as soon as possible. We like for wikis to take at '''most''' one month to prepare to be public, but many wikis are ready within a week and that's awesome! </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How can someone else edit this wiki?</h2> If you want them to help out now, while you're in onboarding, then send them the same link you used to join the Discord server. If they need to edit CSS or create Cargo tables, you can also request that we give them Administrator privileges. If you want them to help edit after the wiki is public, then all they have to do is make an account, and if they need Admin you can request it in the {{int:Wikigg-socialmedia-link}}. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I stop others from editing my wiki?</h2> By default, wiki.gg doesn't allow anonymous (logged-out) editing (although if you want to enable that we can, let us know!). Therefore, we do not recommend taking any steps to stop other people from editing your wiki. The only pages you should protect are this one (the main page) & any files used in your theme (logo, favicon, background)! But if an edit war does break out and you need to restrict editing, you can go to the "More" dropdown in the upper-right corner of the page interface and then click "Protect." We recommend setting a duration of one month or less. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I get extensions installed?</h2> Let us know what extensions you need in your onboarding Discord channel. If possible, please try to make all your requests at once, so we can get to them all easily. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How can I see the info on this page after I delete it?</h2> We have a mirror on our [[support:Default main page|support wiki]], you can bookmark that :) </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>I want to rename my account!</h2> If you reclaimed your account from another hosting site & want to rename, we can help you with that! Ask us to do it at the time that your wiki goes live, since we'll be continuing to mirror edits from the old platform until that time. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>I looked at the source of this main page, why is there so much inline CSS?</h2> We intend for you to delete this page ASAP, therefore it's coded in a way to make deletion very easy (with no extra styles left over in [[MediaWiki:Common.css]]). We do '''NOT''' recommend taking this approach (with inline styles & variables) on your own pages!!!!! Remember you can always view this content on the [[support:Default main page|support wiki]] (you may want to bookmark that page). </div> </div> __NOTITLE__ __NOTOC__ __NOEDITSECTION__ 69b66111e3590a01af5d20bde1899a72c104dcd9 219 218 2024-05-28T15:30:16Z RheingoldRiver 2743 Protected "[[Little-Known Galaxy Wiki]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) wikitext text/x-wiki <!-- IF YOU'RE LOOKING TO USE THIS MESSAGE AS A MAIN PAGE, DO NOT. PLEASE FOLLOW THE INSTRUCTIONS. THIS MESSAGE IS JUST HERE TO WELCOME YOU TO YOUR NEW WIKI, AND TO GUIDE YOU THROUGH THE INITIAL STEPS OF WORKING WITH MEDIAWIKI AND OUR ON-BOARDING PROCESS. THIS IS NOT MEANT TO BE REMADE INTO A MAIN PAGE. --> <div style="text-align: center"> <h1 style="color: #ff1980; font-weight: 700; border-bottom: 0">Welcome to wiki.gg!</h1> Your wiki has been prepared with several [[mw:Help:Templates|templates]] and [[support:Help:CSS|CSS pages]] that will help you get started. </div><!-- -->{{#vardefine:gutter-styles|style="display: flex; flex-wrap: wrap; gap: 1em; justify-content: center; margin-top: 1em; --wiki-content-link-color: #6d8afb; --wiki-content-link-color--visited: var(--wiki-content-link-color);"}}<!-- -->{{#vardefine:guide-box-styles-lvl1|style="border: 2px solid #ff1980; border-radius: 4px; padding: 0 1.2em 0.8em; background: #710e3a; color: #fff; font-size: 1.2em; flex-basis: 550px; box-shadow: 0 0 1.3rem #0003"}}<!-- -->{{#vardefine:guide-box-styles-lvl2|style="border: 2px solid #771c45; border-radius: 4px; padding: 0 1.2em 0.8em; background: #371524; color: #fff; font-size: 1.05em; flex-basis: 550px; box-shadow: 0 0 1.3rem #0003"}}<!-- -->{{#vardefine:guide-box-styles-lvl3|style="border: 2px solid #771c45; border-radius: 4px; padding: 0 1.2em 0.8em; background: #37363736; font-size: 0.98em; flex-basis: 550px; box-shadow: 0 0 1.3rem #0003"}}<!-- -->{{#vardefine:guide-heading-styles|style="font-weight: 700; border-bottom: 0; color: inherit"}} <div {{#var:gutter-styles}}> <div {{#var:guide-box-styles-lvl1}}> <h2 {{#var:guide-heading-styles}}>1. If you haven't yet,</h2> please log in ([[support:Logging into an onboarding wiki|help, how do I log in?]]) (you will need to create a new account if you haven't previously edited wiki.gg wikis). If your wiki has been imported and you've had an account on the original site, please [[Special:ClaimExternalAccount|claim your username]] instead. </div> <div {{#var:guide-box-styles-lvl1}}> <h2 {{#var:guide-heading-styles}}>2. Logged in now?</h2> Let's make an edit! Add your user name on this next line after it says "My name is:" (Hint, using Ctrl+F for nearby keywords can help. Bananas.) <!-- Here! --> ''My name is:'' Congratulations! You have now edited your wiki! </div> <div {{#var:guide-box-styles-lvl1}}> <h2 {{#var:guide-heading-styles}}>3. Get administrator rights</h2> Leave your wiki user name in your on-boarding channel, so we may grant you administrator permissions. These will let you delete pages, restrict who can edit a page, and you'll also be able to theme your wiki later. If your account was imported, it '''must''' be reclaimed first. </div> </div> <div {{#var:gutter-styles}}> <div {{#var:guide-box-styles-lvl2}}> <h2 {{#var:guide-heading-styles}}>Setting up the main page</h2> # Pick one of the example main pages and "move" (under the "More" dropdown in the upper-right-hand corner of your window) it to <code>{{int:Mainpage}}</code>. #* It'll ask you if you're ''sure'' you want to move the page since there's some content here now. You should say yes, delete the content. You can access this content on the [[support:Default main page|support wiki]] at any point in the future. #* Here are the main pages you can pick from & move to <code>{{int:Mainpage}}</code>: #** [[Example Main Page 1]] #** [[Example Main Page 2]] # Visit [[Special:AllPages]] and delete any example pages you no longer need. If you want, you can do this in bulk with [[Special:Nuke]], entering the pattern <code>Example %</code>. Limit it to the namespace <code>(Main)</code>, the first option in the "namespace" dropdown. </div> <div {{#var:guide-box-styles-lvl2}}> <h2 {{#var:guide-heading-styles}}>Theming</h2> # Use [[Special:Upload]] to upload a favicon called <code>Site-favicon.ico</code>. This icon is shown on your browser's tab bar, next to the page's title. It should be 48x48px and look good at 16x16px. # Use [[Special:Upload]] to upload a wiki logo called <code>Site-logo.png</code>. For most wikis, this should be 160x160px. # Protect the favicon and the logo, so only administrators may edit and replace them. # Customize your theme by editing the variables at [[MediaWiki:Common.css]]. Remember to use Ctrl+F5 or Ctrl+Shift+R to cache-refresh in your browser after making any changes! #* Pages in the "MediaWiki" namespace are protected by default, and only your wiki's administrators can edit them. #* You may want to learn [https://river.me/blog/dev-tools/ how to use your browser's dev tools] to help in styling. #* Remember to protect any additional files you upload for your theme! </div> <div {{#var:guide-box-styles-lvl2}}> <h2 {{#var:guide-heading-styles}}>Sidebar links</h2> Edit [[MediaWiki:Sidebar]] to customize the navigation menu on the left. You can remove the "Customizing this wiki" section if you want, but you may want to bookmark those links first. </div> </div> <h2 style="color: #ff1980; font-weight: 700; border-bottom: 0; text-align: center; margin-top: 3em">Frequently asked questions</h2> <div {{#var:gutter-styles}}> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I make a new page?</h2> Click ''[[Special:NewPage|New page]]'' on the sidebar to the left. This link will always be visible from the sidebar, and you can also bookmark that page if you want. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I rename a page?</h2> In the upper-right-hand corner of the page there's a dropdown menu. Renaming in MediaWiki is called "moving" so click "Move" and you'll be able to choose a new name. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>When should I make the wiki public?</h2> As soon as possible! We require you to have a logo [[Special:Upload|uploaded]] called <code>Site-logo.png</code> and a favicon [[Special:Upload|uploaded]] called <code>Site-favicon.ico</code>. (Ignore any warnings you see when uploading those two files.)<br><br>You may also want to customize your theme a bit and replace the contents of this page with your own main page content. But once there is even 1 content page, people can start finding your wiki useful, so you should plan to "release" it as soon as possible. We like for wikis to take at '''most''' one month to prepare to be public, but many wikis are ready within a week and that's awesome! </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How can someone else edit this wiki?</h2> If you want them to help out now, while you're in onboarding, then send them the same link you used to join the Discord server. If they need to edit CSS or create Cargo tables, you can also request that we give them Administrator privileges. If you want them to help edit after the wiki is public, then all they have to do is make an account, and if they need Admin you can request it in the {{int:Wikigg-socialmedia-link}}. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I stop others from editing my wiki?</h2> By default, wiki.gg doesn't allow anonymous (logged-out) editing (although if you want to enable that we can, let us know!). Therefore, we do not recommend taking any steps to stop other people from editing your wiki. The only pages you should protect are this one (the main page) & any files used in your theme (logo, favicon, background)! But if an edit war does break out and you need to restrict editing, you can go to the "More" dropdown in the upper-right corner of the page interface and then click "Protect." We recommend setting a duration of one month or less. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How do I get extensions installed?</h2> Let us know what extensions you need in your onboarding Discord channel. If possible, please try to make all your requests at once, so we can get to them all easily. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>How can I see the info on this page after I delete it?</h2> We have a mirror on our [[support:Default main page|support wiki]], you can bookmark that :) </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>I want to rename my account!</h2> If you reclaimed your account from another hosting site & want to rename, we can help you with that! Ask us to do it at the time that your wiki goes live, since we'll be continuing to mirror edits from the old platform until that time. </div> <div {{#var:guide-box-styles-lvl3}}> <h2 {{#var:guide-heading-styles}}>I looked at the source of this main page, why is there so much inline CSS?</h2> We intend for you to delete this page ASAP, therefore it's coded in a way to make deletion very easy (with no extra styles left over in [[MediaWiki:Common.css]]). We do '''NOT''' recommend taking this approach (with inline styles & variables) on your own pages!!!!! Remember you can always view this content on the [[support:Default main page|support wiki]] (you may want to bookmark that page). </div> </div> __NOTITLE__ __NOTOC__ __NOEDITSECTION__ 69b66111e3590a01af5d20bde1899a72c104dcd9 Main Page 0 1 222 1 2024-05-28T15:30:19Z RheingoldRiver 2743 Adding default set of pages wikitext text/x-wiki #redirect [[Little-Known Galaxy Wiki]] 68612224479ac04157d16a196081c42f7f6dd258 Template:Recipe ingredients/doc 10 202 224 2024-05-28T15:35:43Z Geekette828 51691 Created page with "This template is part of the {{T|Recipe}} group of templates. It stores the parsed out list of ingredients into the [[Special:CargoTables/Recipe_ingredients|recipe ingredients]] table, along with the quantity and recipeID. The recipeID will allow us to relate back to the [[Special:CargoTables/Recipes|recipes]] table, as there are sometimes more than one recipe to craft a certain item. [[Category:Documentation templates]]" wikitext text/x-wiki This template is part of the {{T|Recipe}} group of templates. It stores the parsed out list of ingredients into the [[Special:CargoTables/Recipe_ingredients|recipe ingredients]] table, along with the quantity and recipeID. The recipeID will allow us to relate back to the [[Special:CargoTables/Recipes|recipes]] table, as there are sometimes more than one recipe to craft a certain item. [[Category:Documentation templates]] eba74bbeff1932794141b6e886438815420ac421 Template:Recipe ingredients 10 203 225 2024-05-28T15:35:58Z Geekette828 51691 Created page with "<includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Recipe_ingredients |ingredient={{#explode:{{{1}}}|*|0}} |quantity={{#explode:{{{1}}}|*|1}} |recipeId={{#var:recipeId}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Recipe_ingredients |ingredient=String |quantity=Integer |recipeId=string }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude>" wikitext text/x-wiki <includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Recipe_ingredients |ingredient={{#explode:{{{1}}}|*|0}} |quantity={{#explode:{{{1}}}|*|1}} |recipeId={{#var:recipeId}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Recipe_ingredients |ingredient=String |quantity=Integer |recipeId=string }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude> b98f2920301de80f14fdba53fc7361e2e998aea3 Category:Cargo store templates 14 204 226 2024-05-28T15:37:02Z Geekette828 51691 Created page with "[[Category:Cargo templates]]" wikitext text/x-wiki [[Category:Cargo templates]] 895c24e543bceae97cfc01094d7b079ed93b91ab Template:Items restoration/Cargo attach 10 205 227 2024-05-28T15:57:43Z Geekette828 51691 Created page with "<includeonly></includeonly><noinclude>{{#cargo_attach:_table=Items_restoration}}</noinclude>" wikitext text/x-wiki <includeonly></includeonly><noinclude>{{#cargo_attach:_table=Items_restoration}}</noinclude> f54f37b1d6651ead89e76d644472e841f388da80 230 227 2024-05-28T16:10:39Z Geekette828 51691 wikitext text/x-wiki <includeonly></includeonly><noinclude>{{#cargo_attach:_table=Items_restoration}}[[Category:Cargo attach templates]]</noinclude> 80f0e32126c3afc0719158cd0542de800b61c419 Template:Items restoration 10 206 228 2024-05-28T16:01:29Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Items_restoration |name=String |energyGain=Integer |healthGain=Integer |energyGainS=Integer |healthGainS=Integer }} [[Category:Cargo declaration_templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Items_restoration |name=String |energyGain=Integer |healthGain=Integer |energyGainS=Integer |healthGainS=Integer }} [[Category:Cargo declaration_templates]] 4dbbbae75a33f2fac2cc03a7a7904e07739d3bf8 Template:Item infobox/Cargo declare 10 207 229 2024-05-28T16:08:36Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Items |name=String |energyGain=Integer |sellValue=Integer |sellSuper=Integer |itemType=String }} [[Category:Cargo declaration_templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Items |name=String |energyGain=Integer |sellValue=Integer |sellSuper=Integer |itemType=String }} [[Category:Cargo declaration_templates]] 05571925176145ae4d235456b7d7084b53768ddf Category:Cargo attach templates 14 208 231 2024-05-28T16:10:50Z Geekette828 51691 Created page with "[[Category:Cargo templates]]" wikitext text/x-wiki [[Category:Cargo templates]] 895c24e543bceae97cfc01094d7b079ed93b91ab Template:Item infobox 10 209 232 2024-05-28T16:18:59Z Geekette828 51691 Created page with "<includeonly> <infobox type="Item"> <title source="title"> <default>{{{name|{{PAGENAME}} }}}</default> </title> <image source="image"> <default>{{Exists|File:{{#titleparts:{{PAGENAME}}}}.png|{{#titleparts:{{PAGENAME}}}}.png|}}</default> </image> <group> <header>General Information</header> <data source="itemType"> <label>Type</label> </data> <data source="energyGain"> <label>Energy Gain</label> <format>{{{energyGain|}}}..." wikitext text/x-wiki <includeonly> <infobox type="Item"> <title source="title"> <default>{{{name|{{PAGENAME}} }}}</default> </title> <image source="image"> <default>{{Exists|File:{{#titleparts:{{PAGENAME}}}}.png|{{#titleparts:{{PAGENAME}}}}.png|}}</default> </image> <group> <header>General Information</header> <data source="itemType"> <label>Type</label> </data> <data source="energyGain"> <label>Energy Gain</label> <format>{{{energyGain|}}}<br>{{{energyGainS|}}}</format> </data> <data source="healthGain"> <label>Health Gain</label> <format>{{{healthGain|}}}<br>{{{healthGainS|}}}</format> </data> </group> <header>Merchant Information</header> <data source="sellValue"> <label>Sell Price</label> <format>{{#switch:{{{sellValue|}}} |no=Cannot be sold |#default=Normal Quality:{{{sellValue|}}}<br>Super Quality:{{{sellSuper|}}} }} </format> </data> </group> </infobox>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{sellSuper|}}} }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{Energy Gain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{Documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> a2255d2292f374f1eb1a4297511b7626ae93a21b File:Blueberries.png 6 210 233 2024-05-28T16:25:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:License/game 10 100 234 113 2024-05-28T16:30:32Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{License/template | source = {{{source|}}} | type = developer | darkIcon = yes | icon = [[File:IN COPYRIGHT.svg|50px|link=https://rightsstatements.org/page/InC/1.0/?language=en|IN COPYRIGHT]] | text = This file is owned by [https://www.littleknowngalaxy.com/ Carbon & Kay LLC] and/or its licensors. All trademarks and registered trademarks present in the image are proprietary to '''Carbon & Kay LLC'''.<br>The use of images to illustrate articles concerning the subject of the images in question is believed to have the consent of '''Carbon & Kay LLC'''.''}}</includeonly> <noinclude>{{documentation|Template:License/doc}}</noinclude> bcf19f383b4930ebfd15c7e015951caf5aa31aa1 File:Piper portrait angry.png 6 211 235 2024-05-28T16:31:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Piper portrait confused.png 6 212 236 2024-05-28T16:31:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Piper portrait happy.png 6 213 237 2024-05-28T16:31:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Piper.png 6 214 238 2024-05-28T16:31:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Piper portrait sad.png 6 215 239 2024-05-28T16:31:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Piper portrait stressed.png 6 216 240 2024-05-28T16:31:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Piper sprite.png 6 217 241 2024-05-28T16:31:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Portrait crop Piper.png 6 218 242 2024-05-28T16:31:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin portrait angry.png 6 219 243 2024-05-28T16:31:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin portrait confused.png 6 220 244 2024-05-28T16:31:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin portrait happy.png 6 221 245 2024-05-28T16:32:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin.png 6 222 246 2024-05-28T16:32:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin portrait romanced.png 6 223 247 2024-05-28T16:32:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin portrait sad.png 6 224 248 2024-05-28T16:32:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin portrait stressed.png 6 225 249 2024-05-28T16:32:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Portrait crop Lin.png 6 226 250 2024-05-28T16:32:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin wedding sprite.png 6 227 251 2024-05-28T16:32:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lin sprite.png 6 228 252 2024-05-28T16:32:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Pilot and Spout quarters.png 6 229 253 2024-05-28T16:32:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Beach Holo Sim.png 6 230 254 2024-05-28T16:32:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Holo Sim.png 6 231 255 2024-05-28T16:32:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Library Holo Sim.png 6 232 256 2024-05-28T16:32:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Edward Piper Kendall and I-1900 quarters.png 6 233 257 2024-05-28T16:32:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Kaida Chip Fiji and Poofie quarters.png 6 234 258 2024-05-28T16:32:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Shinji quarters.png 6 235 259 2024-05-28T16:32:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Classroom.png 6 236 260 2024-05-28T16:32:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Fancy quarters.png 6 237 261 2024-05-28T16:32:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 04.png 6 238 262 2024-05-28T16:32:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 06.png 6 239 263 2024-05-28T16:32:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 02.png 6 240 264 2024-05-28T16:32:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 03.png 6 241 265 2024-05-28T16:32:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 05.png 6 242 266 2024-05-28T16:32:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 01.png 6 243 267 2024-05-28T16:32:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ship map deck 07.png 6 244 268 2024-05-28T16:32:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Spaceboard.png 6 245 269 2024-05-28T16:32:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Watering pack level 4.png 6 246 270 2024-05-28T16:32:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Watering pack level 3.png 6 247 271 2024-05-28T16:32:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Watering pack level 2.png 6 248 272 2024-05-28T16:32:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Watering pack.png 6 249 273 2024-05-28T16:32:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Shovel level 4.png 6 250 274 2024-05-28T16:32:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Shovel level 3.png 6 251 275 2024-05-28T16:32:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Shovel level 2.png 6 252 276 2024-05-28T16:32:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Shovel.png 6 253 277 2024-05-28T16:32:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Restoration ray level 4.png 6 254 278 2024-05-28T16:32:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Restoration ray level 3.png 6 255 279 2024-05-28T16:32:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Restoration ray level 2.png 6 256 280 2024-05-28T16:32:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Restoration ray.png 6 257 281 2024-05-28T16:32:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe detector level 3.png 6 258 282 2024-05-28T16:32:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Laser blaster level 2.png 6 259 283 2024-05-28T16:32:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Laser blaster level 3.png 6 260 284 2024-05-28T16:32:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Laser blaster level 4.png 6 261 285 2024-05-28T16:33:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Laser blaster.png 6 262 286 2024-05-28T16:33:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Moon pod.png 6 263 287 2024-05-28T16:33:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Large xeno pod.png 6 264 288 2024-05-28T16:33:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Small xeno pod.png 6 265 289 2024-05-28T16:33:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Juicer.png 6 266 290 2024-05-28T16:33:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Fiber spinner.png 6 267 291 2024-05-28T16:33:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Meteorite extractor.png 6 268 292 2024-05-28T16:33:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Solar panel large.png 6 269 293 2024-05-28T16:33:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Solar panel medium.png 6 270 294 2024-05-28T16:33:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Solar panel small.png 6 271 295 2024-05-28T16:33:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Advanced furnace.png 6 272 296 2024-05-28T16:33:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Furnace.png 6 273 297 2024-05-28T16:33:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garden bot.png 6 274 298 2024-05-28T16:33:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Advanced garden bot.png 6 275 299 2024-05-28T16:33:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Superior garden bot.png 6 276 300 2024-05-28T16:33:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Recycler.png 6 277 301 2024-05-28T16:33:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin red.png 6 278 302 2024-05-28T16:33:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin.png 6 279 303 2024-05-28T16:33:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin green.png 6 280 304 2024-05-28T16:33:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin yellow.png 6 281 305 2024-05-28T16:33:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin orange.png 6 282 306 2024-05-28T16:33:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin purple.png 6 283 307 2024-05-28T16:33:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Storage bin black.png 6 284 308 2024-05-28T16:33:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger growth 4.png 6 285 309 2024-05-28T16:33:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger growth 3.png 6 286 310 2024-05-28T16:33:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger growth 2.png 6 287 311 2024-05-28T16:33:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger growth 1.png 6 288 312 2024-05-28T16:33:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger growth 0.png 6 289 313 2024-05-28T16:33:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger seeds.png 6 290 314 2024-05-28T16:33:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garlic growth 4.png 6 291 315 2024-05-28T16:33:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garlic growth 3.png 6 292 316 2024-05-28T16:33:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garlic growth 2.png 6 293 317 2024-05-28T16:33:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garlic growth 1.png 6 294 318 2024-05-28T16:33:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garlic growth 0.png 6 295 319 2024-05-28T16:33:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Garlic seeds.png 6 296 320 2024-05-28T16:33:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cucumber growth 3.png 6 297 321 2024-05-28T16:33:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cucumber growth 2.png 6 298 322 2024-05-28T16:33:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cucumber growth 1.png 6 299 323 2024-05-28T16:33:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cucumber growth 0.png 6 300 324 2024-05-28T16:33:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cucumber seeds.png 6 301 325 2024-05-28T16:33:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry muffin.png 6 302 326 2024-05-28T16:33:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Radiated blueberries.png 6 303 327 2024-05-28T16:34:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton growth 4.png 6 304 328 2024-05-28T16:34:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton growth 3.png 6 305 329 2024-05-28T16:34:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton growth 2.png 6 306 330 2024-05-28T16:34:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton growth 1.png 6 307 331 2024-05-28T16:34:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton growth 0.png 6 308 332 2024-05-28T16:34:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton seeds.png 6 309 333 2024-05-28T16:34:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn growth 4.png 6 310 334 2024-05-28T16:34:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn growth 3.png 6 311 335 2024-05-28T16:34:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn growth 2.png 6 312 336 2024-05-28T16:34:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn growth 1.png 6 313 337 2024-05-28T16:34:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn growth 0.png 6 314 338 2024-05-28T16:34:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn seeds.png 6 315 339 2024-05-28T16:34:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cherry tree seeds.png 6 316 340 2024-05-28T16:34:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot growth 3.png 6 317 341 2024-05-28T16:34:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot growth 2.png 6 318 342 2024-05-28T16:34:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot growth 1.png 6 319 343 2024-05-28T16:34:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot growth 0.png 6 320 344 2024-05-28T16:34:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot seeds.png 6 321 345 2024-05-28T16:34:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cactonut tree seeds.png 6 322 346 2024-05-28T16:34:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli growth 4.png 6 323 347 2024-05-28T16:34:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli growth 3.png 6 324 348 2024-05-28T16:34:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli growth 2.png 6 325 349 2024-05-28T16:34:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli growth 1.png 6 326 350 2024-05-28T16:34:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli growth 0.png 6 327 351 2024-05-28T16:34:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli seeds.png 6 328 352 2024-05-28T16:34:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 5.png 6 329 353 2024-05-28T16:34:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe alien fungus scaled 33x pngcrushed.png 6 330 354 2024-05-28T16:34:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Slipper organism.png 6 331 355 2024-05-28T16:34:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Penicillin.png 6 332 356 2024-05-28T16:34:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Sea sparkle.png 6 333 357 2024-05-28T16:34:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Root bacteria.png 6 334 358 2024-05-28T16:34:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe dector level 2.png 6 335 359 2024-05-28T16:34:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe detector level 4.png 6 336 360 2024-05-28T16:34:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Nanobot.png 6 337 361 2024-05-28T16:34:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Soil bacteria.png 6 338 362 2024-05-28T16:34:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Slime mold.png 6 339 363 2024-05-28T16:34:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Dust mite.png 6 340 364 2024-05-28T16:34:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe dector.png 6 341 365 2024-05-28T16:34:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Sweat bacteria.png 6 342 366 2024-05-28T16:34:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Stray hair.png 6 343 367 2024-05-28T16:34:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Red algae.png 6 344 368 2024-05-28T16:34:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ecoli.png 6 345 369 2024-05-28T16:34:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Wild yeast.png 6 346 370 2024-05-28T16:34:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Pollen.png 6 347 371 2024-05-28T16:34:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Toxic bacteria.png 6 348 372 2024-05-28T16:35:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Strep bacteria.png 6 349 373 2024-05-28T16:35:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Tardigrade.png 6 350 374 2024-05-28T16:35:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Water flea.png 6 351 375 2024-05-28T16:35:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Dustbunny.png 6 352 376 2024-05-28T16:35:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ameoba.png 6 353 377 2024-05-28T16:35:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Tough bacteria.png 6 354 378 2024-05-28T16:35:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lichen.png 6 355 379 2024-05-28T16:35:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Nematode.png 6 356 380 2024-05-28T16:35:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Common cold.png 6 357 381 2024-05-28T16:35:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Green algae.png 6 358 382 2024-05-28T16:35:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 4.png 6 359 383 2024-05-28T16:35:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 3.png 6 360 384 2024-05-28T16:35:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 2.png 6 361 385 2024-05-28T16:35:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 1.png 6 362 386 2024-05-28T16:35:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 0.png 6 363 387 2024-05-28T16:35:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry seeds.png 6 364 388 2024-05-28T16:35:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bean growth 4.png 6 365 389 2024-05-28T16:35:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bean growth 3.png 6 366 390 2024-05-28T16:35:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bean growth 2.png 6 367 391 2024-05-28T16:35:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bean growth 1.png 6 368 392 2024-05-28T16:35:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bean growth 0.png 6 369 393 2024-05-28T16:35:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bean seeds.png 6 370 394 2024-05-28T16:35:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Banana tree seeds.png 6 371 395 2024-05-28T16:35:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Avocado tree seeds.png 6 372 396 2024-05-28T16:35:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Apple tree seeds.png 6 373 397 2024-05-28T16:35:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Medicine machine.png 6 374 398 2024-05-28T16:35:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe compost machine.png 6 375 399 2024-05-28T16:35:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Compost machine.png 6 376 400 2024-05-28T16:35:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Advanced dark matter refiner.png 6 377 401 2024-05-28T16:35:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Dark matter refiner.png 6 378 402 2024-05-28T16:35:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Dark matter fuel.png 6 379 403 2024-05-28T16:35:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ice cream rad.png 6 380 404 2024-05-28T16:35:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ice cream.png 6 381 405 2024-05-28T16:35:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Chopped salad.png 6 382 406 2024-05-28T16:35:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot cake.png 6 383 407 2024-05-28T16:35:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b Template:Item infobox 10 209 408 232 2024-05-28T16:44:29Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{sellSuper|}}} }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{Energy Gain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> ee5e03bff9665dc97e87a8d30cef86fd3dc5dd90 Template:Item infobox/Cargo declare 10 207 409 229 2024-05-28T16:47:02Z Geekette828 51691 wikitext text/x-wiki {{#cargo_declare:_table=Items |name=String |energyGain=Integer |sellValue=Integer |sellSuper=Integer |itemType=String |produces=String }} [[Category:Cargo declaration_templates]] a564d68d6007cf19bce6cd2e5f88854c6904ce93 410 409 2024-05-28T16:47:22Z Geekette828 51691 wikitext text/x-wiki {{#cargo_declare:_table=Items |name=String |energyGain=Integer |sellValue=Integer |sellSuper=Integer |itemType=String }} [[Category:Cargo declaration_templates]] 05571925176145ae4d235456b7d7084b53768ddf Template:Item infobox/doc 10 384 411 2024-05-28T16:48:18Z Geekette828 51691 Created page with " Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:Special:CargoTables/Items|items cargo table]] <syntaxhighlight lang="wikitext"> {{Item infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (def..." wikitext text/x-wiki Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:Special:CargoTables/Items|items cargo table]] <syntaxhighlight lang="wikitext"> {{Item infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) |sellValue = Sell value of the normal crop. (integer) |sellSuper = Sell value of the super version of the item. (integer) |itemType = Type of item (plain text string) |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) }}</syntaxhighlight> f8f1e857fdd93b5d9a26010394d7103c2eb66fed 412 411 2024-05-28T16:48:44Z Geekette828 51691 wikitext text/x-wiki Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:CargoTables/Items|items cargo table]] <syntaxhighlight lang="wikitext"> {{Item infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) |sellValue = Sell value of the normal crop. (integer) |sellSuper = Sell value of the super version of the item. (integer) |itemType = Type of item (plain text string) |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) }}</syntaxhighlight> 909d7786ca6a0509b369d0dca9471673d9284c55 413 412 2024-05-28T16:49:28Z Geekette828 51691 wikitext text/x-wiki Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:CargoTables/Items|items cargo table]] <syntaxhighlight lang="wikitext"> {{Item infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- These These should be applicable to nearly every item --> |sellValue = Sell value of the normal crop. (integer) |sellSuper = Sell value of the super version of the item. (integer) |itemType = Type of item (plain text string) |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) }}</syntaxhighlight> 65b6b21e2bd3c5534c40f9337f158f10d0fac1ca 414 413 2024-05-28T16:50:42Z Geekette828 51691 wikitext text/x-wiki Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] <syntaxhighlight lang="wikitext"> {{Item infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- These should be applicable to nearly every item --> |sellValue = Sell value of the normal crop. (integer) |sellSuper = Sell value of the super version of the item. (integer) |itemType = Type of item (plain text string) <!-- Restoration information --> |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) }}</syntaxhighlight> e83185e22f39d84c967bfabacec82625357e18d2 Dark matter fuel 0 385 415 2024-05-28T16:51:43Z Geekette828 51691 Created page with "{{Item infobox |name = Dark matter fuel |sellValue=1 |sellSuper=1 |itemType=1 }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark Matter Fuel |machine=Dark Matter Refiner |ingredients=Dark Matter*10 |time=8hr}} {{Recipe|produces=Dark Matter Fuel |machine=Advanced Dark Matter Refiner |ingredients=Dark Matter*10 |time=6hr}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== ===Reward=== {{item as quest rew..." wikitext text/x-wiki {{Item infobox |name = Dark matter fuel |sellValue=1 |sellSuper=1 |itemType=1 }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark Matter Fuel |machine=Dark Matter Refiner |ingredients=Dark Matter*10 |time=8hr}} {{Recipe|produces=Dark Matter Fuel |machine=Advanced Dark Matter Refiner |ingredients=Dark Matter*10 |time=6hr}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== b9e033e560b6b94dcf5c9674a32284480549981f Template:Purchased at/doc 10 386 416 2024-05-28T16:55:00Z Geekette828 51691 Created page with "{{tocright}} This template queries the <code>Shop_inventory</code> [[Special:CargoTables|cargo table]] to produce a list of shops that sell a particular item. Everytime a shop page is saved, the data in the <code>Shop_inventory</code> is refreshed, which will update calls to it. '''Related Templates/Modules:'''<br> *This template uses [[Module:CargoQuery]] for the ability to skin the results inside of a template. *This template uses {{T|Purchased at/phantom}} as a shell..." wikitext text/x-wiki {{tocright}} This template queries the <code>Shop_inventory</code> [[Special:CargoTables|cargo table]] to produce a list of shops that sell a particular item. Everytime a shop page is saved, the data in the <code>Shop_inventory</code> is refreshed, which will update calls to it. '''Related Templates/Modules:'''<br> *This template uses [[Module:CargoQuery]] for the ability to skin the results inside of a template. *This template uses {{T|Purchased at/phantom}} as a shell of how the core rows of data get displayed. ==Syntax== <syntaxhighlight lang="wikitext"> {{Purchased at}} </syntaxhighlight> * If no additional conditions are added, it will take the <nowiki>{{PAGENAME}}</nowiki>. * If the user adds a pipe + a item, it will use that item instead. 97e407637b64c52e5a6d1d4dae6011dfe38f8632 File:Credits.png 6 387 417 2024-05-28T16:59:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Purchased at/phantom 10 388 418 2024-05-28T17:00:02Z Geekette828 51691 Created page with "<includeonly><!-- --> |- | {{icon|{{{shopName|}}}}} | style="text-align:center;" | {{{cost|}}}{{icon|credits}} | style="text-align:center;" | {{{note|&mdash;}}} </includeonly><noinclude>Part of the {{T|Purchased at}} template. This template controls how the results of the Cargo Query is laid out. [[Category:Phantom templates]] </noinclude>" wikitext text/x-wiki <includeonly><!-- --> |- | {{icon|{{{shopName|}}}}} | style="text-align:center;" | {{{cost|}}}{{icon|credits}} | style="text-align:center;" | {{{note|&mdash;}}} </includeonly><noinclude>Part of the {{T|Purchased at}} template. This template controls how the results of the Cargo Query is laid out. [[Category:Phantom templates]] </noinclude> 9b72178730dd8fc2797eed335c911e8a45ecf43b Module:CargoQuery 828 389 419 2024-05-28T17:00:25Z Geekette828 51691 Created page with "-- original module can be found at https://support.wiki.gg/wiki/Module:CargoQuery local PARAM_LOOKUP = { ['order by'] = 'orderBy', ['join on'] = 'join', ['group by'] = 'groupBy', table = 'tables', } local h = {} local p = {} function p.main(frame) local args = h.merge() args.one_to_many_sep = args.one_to_many_sep and args.one_to_many_sep:gsub('\\s', ' ') or ',' local query = {} for k, v in pairs(args) do if string.sub(k, 0, 2) == 'q?' then local key = str..." Scribunto text/plain -- original module can be found at https://support.wiki.gg/wiki/Module:CargoQuery local PARAM_LOOKUP = { ['order by'] = 'orderBy', ['join on'] = 'join', ['group by'] = 'groupBy', table = 'tables', } local h = {} local p = {} function p.main(frame) local args = h.merge() args.one_to_many_sep = args.one_to_many_sep and args.one_to_many_sep:gsub('\\s', ' ') or ',' local query = {} for k, v in pairs(args) do if string.sub(k, 0, 2) == 'q?' then local key = string.sub(k, 3) query[PARAM_LOOKUP[key] or key] = v elseif PARAM_LOOKUP[k] then query[PARAM_LOOKUP[k]] = v else query[k] = v end end if args.one_to_many then query.fields = query.fields .. ',' .. query.one_to_many end local result = mw.ext.cargo.query(query.tables, query.fields, query) if #result == 0 then return frame:preprocess(args.default or '') end if args.one_to_many then result = h.groupOneToManyFields(result, h.getOneToManyTableFromArgs(args)) h.concatOneToManyFieldsInEachRow(result, args.one_to_many_sep) end local tbl = {} for i, row in ipairs(result) do row.index = i tbl[#tbl+1] = frame:expandTemplate{ title = args.template, args = row } end local intro = frame:preprocess(args.intro or '') local outro = frame:preprocess(args.outro or '') return intro .. table.concat(tbl,args.delimiter or '') .. outro end -- This function on Leaguepedia is part of Module:ArgsUtil but is copied here to avoid dependencies function h.merge() local f = mw.getCurrentFrame() local origArgs = f.args local parentArgs = f:getParent().args local args = {} for k, v in pairs(origArgs) do v = mw.text.trim(tostring(v)) if v ~= '' then args[k] = v end end for k, v in pairs(parentArgs) do v = mw.text.trim(v) if v ~= '' then args[k] = v end end return args end function h.getOneToManyTableFromArgs(args) local oneToMany = { fields = mw.text.split(args.one_to_many, '%s*,%s*'), groupBy = { args.one_to_many_group }, } return oneToMany end -- These functions on Leaguepedia are part of Module:CargoUtil but are copied here to avoide dependencies -- Some code is updated to avoid further dependencies function h.groupOneToManyFields(result, oneToMany) if not oneToMany then return result end local currentKey local groupedResult = {} local fields = h.parseFieldsForKeys(oneToMany.fields) for _, row in ipairs(result) do local newKey = h.getNewKey(row, oneToMany.groupBy) if newKey == currentKey then h.addRowToExistingGroup(groupedResult, row, fields) else h.addRowToNewGroup(groupedResult, row, fields) currentKey = newKey end end return groupedResult end function h.parseFieldsForKeys(fields) for i, v in ipairs(fields) do fields[i] = h.parseOneFieldForKey(v) end return fields end function h.getNewKey(row, groupBy) local toConcat = {} for _, v in ipairs(groupBy) do toConcat[#toConcat+1] = row[v] end return table.concat(toConcat) end function h.parseOneFieldForKey(str) if not str:find('=') then return str end return str:match('=(.+)') end function h.addRowToExistingGroup(groupedResult, row, fields) for _, v in ipairs(fields) do local parentRowValues = groupedResult[#groupedResult][v] parentRowValues[#parentRowValues+1] = row[v] end end function h.addRowToNewGroup(groupedResult, row, fields) for _, v in ipairs(fields) do row[v] = { row[v] } end groupedResult[#groupedResult+1] = row end function h.concatOneToManyFieldsInEachRow(result, sep) for _, row in ipairs(result) do for k, v in pairs(row) do if type(v) == 'table' then row[k] = table.concat(v, sep) end end end end return p 9876a31f11ed4fab7a916feb8e202c2bb698282e Module:CargoQuery/doc 828 390 420 2024-05-28T17:00:41Z Geekette828 51691 Created page with "<!-- originally found at: https://support.wiki.gg/wiki/Module:CargoQuery/doc --> This module lets you get around the <code>|no html</code> bug that [[mw:Extension:Cargo|Cargo]] has by avoiding |format=template. To use, preface query arguments with <code>q?</code>. Even if you are only using one table, use <code>|q?tables=</code>. You must specify the template that will handle each row of the query result using <code>|template=</code>. You may additionally specify <code..." wikitext text/x-wiki <!-- originally found at: https://support.wiki.gg/wiki/Module:CargoQuery/doc --> This module lets you get around the <code>|no html</code> bug that [[mw:Extension:Cargo|Cargo]] has by avoiding |format=template. To use, preface query arguments with <code>q?</code>. Even if you are only using one table, use <code>|q?tables=</code>. You must specify the template that will handle each row of the query result using <code>|template=</code>. You may additionally specify <code>|intro=</code>, <code>|outro=</code>, <code>|delimiter=</code>, and <code>|default=</code>. Use Lua names of all query parameters, so <code>|q?join=</code>, <code>|q?groupBy</code>, etc. For simplicity of code, the named args parameter is required to be Yes, and you do not need to specify it. Unlike <code>|format=template</code>, this wrapper will NOT rename parameters with underscores in them to use spaces instead. ==Parameters & Invocation== <pre>{{#invoke:CargoQuery|main |tables= <!-- corresponds to table / tables --> |join= <!-- corresponds to join on --> |fields= <!-- corresponds to fields --> |where= <!-- corresponds to where --> |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= <!-- pagename of template (required). remember to name your args! --> |intro= |outro= |delimiter= |default= }}</pre> Additionally, if you have one-to-many data, you may specify these parameters: <pre> |one_to_many= |one_to_many_group= |one_to_many_sep=, </pre> For example, if you have many <code>City</code>s for every one <code>Kingdom</code>, you might supply: <pre> |one_to_many=City |one_to_many_group=Kingdom |one_to_many_sep=, </pre> And then for the <code>Kingdom="Skyrim"</code> line, you'd get <code>|City=Whiterun,Riften,...</code> 58e079719d4b0bc82634a05d8b2401a503a931e1 Template:Purchased at 10 391 421 2024-05-28T17:01:44Z Geekette828 51691 Created page with "<includeonly> {{#invoke:CargoQuery|main |tables= Shop_inventory |join= <!-- corresponds to join on --> |fields= shopName, cost, note |where= itemName="{{{1|{{PAGENAME}}}}}" |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Shop availability/phantom |intro= '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}''' can be purchased from the following location(s..." wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Shop_inventory |join= <!-- corresponds to join on --> |fields= shopName, cost, note |where= itemName="{{{1|{{PAGENAME}}}}}" |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Shop availability/phantom |intro= '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}''' can be purchased from the following location(s):<br> {{{!}} class="article-table" style="max-width:35%;" !Sold At !Cost !Notes |outro= {{!}}} |delimiter= |default= {{icon|{{ucfirst:{{{1|{{PAGENAME}}}}}}}}} cannot be purchased from any vendor. }}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Cargo query templates]]</noinclude> fd27fc766cd66821198cc42c5cb595d9de61e3ea Category:Cargo query templates 14 392 422 2024-05-28T17:01:58Z Geekette828 51691 Created page with "[[Category:Cargo templates]]" wikitext text/x-wiki [[Category:Cargo templates]] 895c24e543bceae97cfc01094d7b079ed93b91ab Category:Data templates 14 393 423 2024-05-28T17:02:09Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Shop/header 10 394 424 2024-05-28T17:05:54Z Geekette828 51691 Created page with "<includeonly>{| !Product !!Sell Price !!Notes</includeonly><noinclude>[[Category:Runner templates]]</noinclude>" wikitext text/x-wiki <includeonly>{| !Product !!Sell Price !!Notes</includeonly><noinclude>[[Category:Runner templates]]</noinclude> 5c157d32cd3afe55484b7a901376a8ce466c2666 Template:Shop/footer 10 395 425 2024-05-28T17:06:14Z Geekette828 51691 Created page with "<includeonly>|}</includeonly><noinclude>[[Category:Runner templates]]</noinclude>" wikitext text/x-wiki <includeonly>|}</includeonly><noinclude>[[Category:Runner templates]]</noinclude> f0ff6413a62f46a1eec12b3746b4f0027e49e445 Template:Shop/Cargo declare 10 396 426 2024-05-28T17:11:06Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Shop_inventory |shopName=String |itemName=String |cost=Integer |note=Text }}[[Category:Cargo declaration templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Shop_inventory |shopName=String |itemName=String |cost=Integer |note=Text }}[[Category:Cargo declaration templates]] 589732a025f5ffa51ee1aaa2261f96320a29ff05 Template:Shop 10 397 427 2024-05-28T17:11:29Z Geekette828 51691 Created page with "<includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30px|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits}}</td><!-- -->{{Namespace|main=[[Category:Sells {{{Link|{{{1|}}}}}}|{{{Link|{{{1|}}}}}}]]}}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#ca..." wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30px|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits}}</td><!-- -->{{Namespace|main=[[Category:Sells {{{Link|{{{1|}}}}}}|{{{Link|{{{1|}}}}}}]]}}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Data templates]] </noinclude> b99f91dd97632f94bf37dd43c04cfafd9548d35d 440 427 2024-05-28T17:20:22Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30px|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits}}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> b6eb83c065fb0e1ab9759b86cbd1eab35cef1f9f 441 440 2024-05-28T17:20:58Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits}}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> 5b445c6662d2f597dcbd47a523c68f3cc4df7d18 442 441 2024-05-28T17:21:33Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> b693303df23571c6c3565d9a7ebe127768f8d645 443 442 2024-05-28T17:22:00Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits|size=15}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> 59503c98893befe6aeaef70f3b47c3ca382f7db5 444 443 2024-05-28T17:22:24Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}{{icon|credits|size=20|notext=true}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />'''Note:''' {{{note|}}}}}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> e1db11b0bb22e4398325cef9e1abf29b369c3171 445 444 2024-05-28T17:22:56Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}&nbsp;{{icon|credits|size=20|notext=true}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|<br />{{{note|}}}| -- }}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> b6789d31d119992233f6932e07fd305ba8aafe0b Template:Icon 10 398 428 2024-05-28T17:12:23Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Icon|main}}</includeonly><noinclude>{{Documentation}} [[Category:Lua templates]] [[Category:Infoicon templates]] [[Category:Design templates]]</noinclude>" wikitext text/x-wiki <includeonly>{{#invoke:Icon|main}}</includeonly><noinclude>{{Documentation}} [[Category:Lua templates]] [[Category:Infoicon templates]] [[Category:Design templates]]</noinclude> 71b34edaa4e45149be363adf94a15c2cda840eaa Module:Icon 828 399 429 2024-05-28T17:12:59Z Geekette828 51691 Created page with "local p = {} local lib = require('Module:Feature') local LL = require('Module:Link label')._main function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Icon' } }) return p._main(args) end function p._main(args) local item = args.name or args[1] if not item then return mw.html.create() end -- if no input then return blank local link = args.nolink and '' or (args.link or..." Scribunto text/plain local p = {} local lib = require('Module:Feature') local LL = require('Module:Link label')._main function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Icon' } }) return p._main(args) end function p._main(args) local item = args.name or args[1] if not item then return mw.html.create() end -- if no input then return blank local link = args.nolink and '' or (args.link or item) local size = tonumber(args.size or args.s or '30') local upscale --figure out what to size to default back down to -- multiples of 8 as they wont become decimal in any screen density if size < 24 then upscale = '16' elseif size < 32 then upscale = '24' elseif size < 40 then upscale = '32' elseif size < 48 then upscale = '40' else upscale = '48' end local ext = args.ext or 'png' local amount = args.amount or args.x or args[2] local text = args.text or args[3] local textPrefix = args.textPrefix local note = args.note local nolink = args.nolink or false local notext = args.notext or false local br = args.br -- mw.logObject(args) local prefix = args.prefix or '' local suffix = args.suffix or '' prefix = prefix:gsub('{space}', ' ') suffix = suffix:gsub('{space}', ' ') local icon = mw.html.create():tag('span'):addClass('custom-icon'):attr('data-item', item:gsub("'", "")) local icon_image = icon:tag('span'):addClass('custom-icon-image') local icon_text = icon:tag('span'):addClass('custom-icon-text') -- main icon image local filename = table.concat({prefix, item, suffix}) icon_image:wikitext('[[File:', filename, '.', ext, '|', size, 'px|link=', link, ']]') -- prepend some descriptor before the link if lib.isNotEmpty(textPrefix) then icon_text:wikitext(' ', textPrefix) end -- auto link unless disable if not notext then if link == '' then icon_text:wikitext(item, ' ') elseif link == item then icon_text:wikitext(' ', LL(item)) else icon_text:wikitext(' [[', link, '|', item, ']]') end end -- append text if any if lib.isNotEmpty(text) then icon_text:wikitext(' ', text) end -- amount if any if lib.isNotEmpty(amount) then amount = tonumber(amount) ~= nil and lib.thousandsSeparator(amount) or amount icon_text:wikitext(' × ', amount) end -- ending note if any if lib.isNotEmpty(note) then icon_text:wikitext(' ', note, '') end -- putting icon on its own line if lib.isNotEmpty(br) then icon_text:wikitext('<br>') end -- mw.logObject(icon) -- debug return icon end return p ce5e91e124954d8ace56b4304ab62c48a385a446 Module:Feature 828 400 430 2024-05-28T17:13:45Z Geekette828 51691 Created page with "--- Miscellaneous useful functions. local lib = {} local util = require('libraryUtil') local checkType = util.checkType local checkTypeMulti = util.checkTypeMulti local NIL_OK = true --- Choose one of two values to return. -- @param {boolean} cond Determines which value to return. -- @param T The value to return if `cond` is true (or truthy). -- @param F The value to return if `cond` is false (or falsey). function lib.ternary(cond, T, F) if cond then ret..." Scribunto text/plain --- Miscellaneous useful functions. local lib = {} local util = require('libraryUtil') local checkType = util.checkType local checkTypeMulti = util.checkTypeMulti local NIL_OK = true --- Choose one of two values to return. -- @param {boolean} cond Determines which value to return. -- @param T The value to return if `cond` is true (or truthy). -- @param F The value to return if `cond` is false (or falsey). function lib.ternary(cond, T, F) if cond then return T end return F end --- Some functions from `mw.text` are slow or may not always work as intended. -- This group of functions provides better alternatives for them. -- @section `mw.text` replacements --- -- Removes ASCII whitespace from the start and end of `text`. -- Slightly more efficient than the `mw.text` implementation. -- @see https://help.fandom.com/wiki/Extension:Scribunto#mw.text.trim_is_slow -- @param {string} text The text to trim. -- @return {string} The trimmed text. function lib.trim(text) return (text:gsub( '^[\t\r\n\f ]+', '' ):gsub( '[\t\r\n\f ]+$', '' )) -- the "extra" parentheses are important for removing the second value returned from `gsub` end --- Returns an iterator over substrings that would be returned by @{lib.split}. -- @see @{lib.split} for argument documentation. -- @return {function} Iterator over substrings of `text` separated by `delim`. function lib.gsplit(text, delim, opt) checkType('Feature.gsplit', 1, text, 'string') checkType('Feature.gsplit', 2, delim, 'string', NIL_OK) checkType('Feature.gsplit', 3, opt, 'table', NIL_OK) if delim == nil then delim = " " end if opt == nil then opt = {} end -- the mediawiki implementation uses ustring, which is slower than string -- and also not necessary if delim isn't a pattern. -- https://help.fandom.com/wiki/Extension:Scribunto#mw.text.split_is_very_slow -- local g = mw.text.gsplit(text, delim, true) -- local function f() -- local value = g() -- if value and not opt.noTrim then -- value is nil when the generator ends -- value = mw.text.trim(value) -- end -- if value == "" and opt.removeEmpty then -- return f() -- end -- return value -- end -- return f, nil, nil -- based on https://github.com/wikimedia/mediawiki-extensions-Scribunto/blob/1eecdac6def6418fb36829cc2f20b464c30e4b37/includes/Engines/LuaCommon/lualib/mw.text.lua#L222 local s, l = 1, #text local function f() if s then local e, n = string.find( text, delim, s, true ) local ret if not e then ret = string.sub( text, s ) s = nil elseif n < e then -- Empty separator! ret = string.sub( text, s, e ) if e < l then s = e + 1 else s = nil end else ret = e > s and string.sub( text, s, e - 1 ) or '' s = n + 1 end if not opt.noTrim then ret = lib.trim(ret) end if ret == '' and opt.removeEmpty then return f() end return ret end end return f, nil, nil end --- Returns a table containing the substrings of `text` that are separated by `delim`. -- (Compared to @{mw.text.split}, this function always treats `delim` as a literal -- string rather than a pattern, and it trims output substrings using @{lib.trim} by default.) -- @param {string} text The string to split. -- @param[opt] {string} delim The delimiter string to use when splitting `text`. -- (Using an empty string will split `text` into individual characters.) -- @param[opt] {table} opt Extra options: -- @param[opt] {boolean} opt.noTrim Set true to disable trimming of generated substrings -- using @{lib.trim}. -- @param[opt] {boolean} opt.removeEmpty Set true to omit empty substrings -- (i.e., when multiple `delim` appear consecutively, or when -- `delim` appears at the start or end of `text`). -- @return {table} Substrings of `text separated by `delim`. function lib.split(text, delim, opt) checkType('Feature.split', 1, text, 'string') checkType('Feature.split', 2, delim, 'string', NIL_OK) checkType('Feature.split', 3, opt, 'table', NIL_OK) local output = {} for item in lib.gsplit(text, delim, opt) do table.insert(output, item) end return output end --- A wrapper around @{mw.text.unstripNoWiki} that un-escapes -- characters/sequences that <nowiki> escapes. -- @see https://github.com/wikimedia/mediawiki/blob/c22d01f23b7fe754ef106e97bae32c3966f8db3e/includes/parser/CoreTagHooks.php#L146 -- for MediaWiki source code for <nowiki> function lib.unstripNoWiki(str) return (mw.text.unstripNoWiki(str) :gsub('&lt;', '<'):gsub('&gt;', '>') :gsub('-&#123;', '-{'):gsub('&#125;-', '}-')) -- the "extra" parentheses are important for removing the second value returned from `gsub` end --- @section end --- Returns an iterator over `tbl` that outputs items in the order defined by `order`. -- @param {table} tbl The table to iterate over. -- @param[opt] {table|function} order The iteration order. -- -- Can be specified either as an ordered list (table) of keys from `tbl` -- or as an ordering function that accepts `tbl`, `keyA`, and `keyB` -- and returns true when the entry in `tbl` associated wity `keyA` -- should come before the one for `keyB`. -- -- If not specified, the keys' natural ordering is used -- (i.e., `function(tbl, a, b) return a < b end`). -- @return {function} The iterator. function lib.spairs(tbl, order) checkType('Feature.spairs', 1, tbl, 'table') checkTypeMulti('Feature.spairs', 2, order, {'table', 'function', 'nil'}) local keys if type(order) == "table" then keys = order else -- collect the keys keys = {} for k in pairs(tbl) do table.insert(keys, k) end -- sort the keys (using order function if given) if order then table.sort(keys, function(a, b) return order(tbl, a, b) end) else table.sort(keys) end end -- return the iterator function local i = 0 return function() i = i + 1 local key = keys[i] return key, tbl[key] end end --[[ Parses Phantom Template Format strings into a list of maps. @param {string} input A string formed by concatenating the output of Phantom Templates. Usually, this string is generated by DPL. @param[opt] {string} key_separator Separator between the entries (key-value pairs) of items in `input`. Defaults to ';'. @param[opt] {string} end_separator Separator between items in `input`. Defaults to '$'. @param[opt] {string} equal_separator Separator between the key and value of each entry in `input`. Defaults to '='. @return {table} A list of items from `input`; each value is a map of the item's entries. --]] function lib.parseTemplateFormat (inputStr, key_separator, end_separator, equal_separator) if key_separator == nil then key_separator = ";" end if end_separator == nil then end_separator = "$" end if equal_separator == nil then equal_separator = "=" end local arg_format = "^%s*(.-)%s*" .. equal_separator .. "%s*(.-)%s*$" local resultTable = {} for str in lib.gsplit(inputStr, end_separator, {noTrim=true, removeEmpty=true}) do local result = {} for param in lib.gsplit(str, key_separator) do local arg, val = param:match(arg_format) if arg then result[arg] = val else -- skip, i guess -- mw.log("Warning: Lua module found extra " .. key_separator .. " or " .. end_separator .. " separators in DPL output.") end end table.insert(resultTable, result) end return resultTable end --[=[ Parses Phantom Template Format strings into a list of ordered maps. @param {string} input A string formed by concatenating the output of Phantom Templates. Usually, this string is generated by DPL. @param[opt] {string} key_separator Separator between the entries (key-value pairs) of items in `input`. Defaults to ';'. @param[opt] {string} end_separator Separator between items in `input`. Defaults to '$'. @param[opt] {string} equal_separator Separator between the key and value of each entry in `input`. Defaults to '='. @return[name=output] {table} A list of items from `input`; each value is a list of the item's entries. @return[name=output[i]] {table} The i-th item of `input`. @return[name=output[i].page] {string} The value of the `page` key for this item. @return[name=output[i][j]] {table} The j-th key-value pair of this item. @return[name=output[i][j].key] {string} The j-th key of this item. @return[name=output[i][j].value] The j-th value of this item. --]=] function lib.parseTemplateFormatOrdered (inputStr, key_separator, end_separator, equal_separator) if key_separator == nil then key_separator = ";" end if end_separator == nil then end_separator = "$" end if equal_separator == nil then equal_separator = "=" end local arg_format = "^%s*(.-)%s*" .. equal_separator .. "%s*(.-)%s*$" local resultTable = {} for str in lib.gsplit(inputStr, end_separator, {noTrim=true, removeEmpty=true}) do local result = {} for param in lib.gsplit(str, key_separator) do local arg, val = param:match(arg_format) if arg == 'page' then result['page'] = val else table.insert(result,{ key = arg, value = val }) end end table.insert(resultTable, result) end return resultTable end -- searches ordered table and returns value function lib.orderedTableSearch(tbl, search) for i, obj in ipairs(tbl) do if obj.key == search then return obj.value end end return false end --- Add thousands separator to number `n`. -- @param {number|frame} n If a frame is given, then its first argument (`frame.args[1]`) will be used as input instead. -- @return {string} The number formatted with commas for thousands separators. -- @see https://stackoverflow.com/questions/10989788/format-integer-in-lua/10992898#10992898 function lib.thousandsSeparator(n) if (n == mw.getCurrentFrame()) then n = n.args[1] elseif (type(n) == "table") then n = n[1] end local i, j, minus, int, fraction = tostring(n):find('([-]?)(%d+)([.]?%d*)') -- reverse the int-string and append a comma to all blocks of 3 digits int = int:reverse():gsub("(%d%d%d)", "%1,") -- reverse the int-string back remove an optional comma and put the optional minus and fractional part back return minus .. int:reverse():gsub("^,", "") .. fraction end --- @return {boolean} true iff string or table is empty -- @note May not be correct for tables with metatables. function lib.isEmpty(item) if item == nil or item == "" then return true end if type(item) == "table" then return next(item) == nil end return false end --- @return {boolean} true iff string or table is not empty -- @note May not be correct for tables with metatables. function lib.isNotEmpty(item) return not lib.isEmpty(item) end --- @return nil if string or table is empty, otherwise return the value. function lib.nilIfEmpty(item) if lib.isEmpty(item) then return nil else return item end end --- -- @param {table} t A table of items -- @param elm The item to search for -- @returns true if `elm` is a value in `t`; false otherwise. (Does not check keys of `t`.) -- @see http://stackoverflow.com/q/2282444 -- @see another implementation: Dev:TableTools.includes() function lib.inArray(t, elm) for _, v in pairs(t) do if v == elm then return true end end return false end return lib 9361b3f9af4b90a0be6a449677e3de61c6a312c7 Module:Link label 828 401 431 2024-05-28T17:14:40Z Geekette828 51691 Created page with "local p = {} local TERMS = { ' %(flower%)', ' %(group%)', ' %(character%)', ' %(game%)', ' %(item%)', } function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, wrapper = { 'Template:Link label' } }) return p._main(args) end function p.getTerms() local result = mw.html.create() for _, term in ipairs(TERMS) do local replacedTerm, _ = term:gsub('%%', '') result:newline():wikitext('* '):tag('code'):wikitext(re..." Scribunto text/plain local p = {} local TERMS = { ' %(flower%)', ' %(group%)', ' %(character%)', ' %(game%)', ' %(item%)', } function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, wrapper = { 'Template:Link label' } }) return p._main(args) end function p.getTerms() local result = mw.html.create() for _, term in ipairs(TERMS) do local replacedTerm, _ = term:gsub('%%', '') result:newline():wikitext('* '):tag('code'):wikitext(replacedTerm):done() end return result end function p._main(args) local link = type(args) == 'table' and args[1] or args if (link == nil or type(link) == 'table') then return '' end link = tostring(link) if (link:find('%|')) then return link end -- if link contains multiple links local _, count = link:gsub('%[%[', '') if (count > 1) then return link end if (link:find('%[%[') and link:find('%]%]')) then link = link:gsub('%[%[', ''):gsub('%]%]', '') end local label = link for _, term in ipairs(TERMS) do if (link:find(term)) then label = link:gsub(term, '') end end return '[[' .. link .. '|' .. label .. ']]' end return p 44f09b15ce73d00254e407346c2e1a9f92b0afe7 Module:Arguments 828 402 432 2024-05-28T17:15:27Z Geekette828 51691 Created page with "--- Copy/pate from https://commons.wiki.gg/wiki/Module:Arguments --- Arguments invocation argument extractor for Scribunto modules. -- It is intended for use by other Lua modules, and should not be -- called from an invocation (`#invoke`) directly. -- -- This module supports the following features: -- * Trimming and blank argument removal. -- * Argument inheritance between child and parent frames. -- * Argument extraction for external modules and console input..." Scribunto text/plain --- Copy/pate from https://commons.wiki.gg/wiki/Module:Arguments --- Arguments invocation argument extractor for Scribunto modules. -- It is intended for use by other Lua modules, and should not be -- called from an invocation (`#invoke`) directly. -- -- This module supports the following features: -- * Trimming and blank argument removal. -- * Argument inheritance between child and parent frames. -- * Argument extraction for external modules and console input. -- * Options to customise argument extraction behaviour. -- -- @script arguments -- @release stable -- @note The `args` table from the @{arguments.getArgs} -- function is a metatable for performance reasons. -- Thus, the table will not permit Lua table methods -- such as `#args`, @{next|next(args)}, and @{table} -- library functions. -- @note This module will eventually be adapted as a -- library in [[mw:gerrit:q/158323|MediaWiki -- core]], called as `require('getArgs')`. The core -- library will remove `options.parentOnly`. -- @author [[wikipedia:User:Mr. Stradivarius|Mr. Stradivarius]] (Wikipedia) -- @author [[wikipedia:User:Anomie|Anomie]] (Wikipedia) -- @author [[wikipedia:User:Jackmcbarn|Jackmcbarn]] (Wikipedia) -- @author [[User:Dessamator|Dessamator]] -- @author [[User:DarthKitty|DarthKitty]] -- @attribution [[wikipedia:Module:Arguments|Module:Arguments]] (Wikipedia) -- @see [[wikipedia:Module:Arguments|Original module on Wikipedia]] -- @see [[Module:Arguments/testcases|Test cases for this module]] local arguments = {} -- Module dependencies. local i18n = require('Module:I18n').loadMessages('Arguments') local util = require('libraryUtil') local checkType = util.checkType -- Four different value tidying functions. -- This way, we don't have to check the options every time we call them. --- Default value tidying function. -- Trims parameter values automatically if they are defined strings. -- Treats blank strings as `nil`. -- @function tidyValDefault -- @param {string|number} key MediaWiki parameter key. -- @param {string|nil} val MediaWiki parameter value, -- or nil if `key` is an empty string or nil. -- @local local function tidyValDefault(key, val) if type(val) == 'string' then val = val:match('^%s*(.-)%s*$') if val == '' then return nil else return val end else return val end end --- Value tidying function that trims values. -- Trims parameter values automatically if they are defined strings. -- @function tidyValTrimOnly -- @param {string|number} key MediaWiki parameter key. -- @param {string|nil} val MediaWiki parameter value. -- @local local function tidyValTrimOnly(key, val) if type(val) == 'string' then return val:match('^%s*(.-)%s*$') else return val end end --- Value tidying function that removes blanks. -- Removes blank values from the arguments table. -- @function tidyValRemoveBlanksOnly -- @param {string|number} key MediaWiki parameter key. -- @param {string|nil} val MediaWiki parameter value, -- or nil if `key` is whitespace or nil. -- @local local function tidyValRemoveBlanksOnly(key, val) if type(val) == 'string' then if val:find('%S') then return val else return nil end else return val end end --- Value tidying function that returns original value. -- Effectively a NOOP function that does no value processing. -- @function tidyValNoChange -- @param {string|number} key MediaWiki parameter key. -- @param {string|nil} val MediaWiki parameter value. -- @local local function tidyValNoChange(key, val) return val end --- Parent template title match checker. -- @function matchesTitle -- @param {string|number|nil} given Local prefixed page -- title, or MediaWiki article ID (`wgArticleId`). -- @param {string} title Title of parent template. -- @return {boolean} Whether the `given` ID/title matches -- the title of the parent template. local function matchesTitle(given, title) local tp = type( given ) return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title end --- Default argument translation metatable. -- @table translate_mt -- @local local translate_mt = { __index = function(t, k) return k end } --- Main argument extraction utility. -- Arguments are memoized once fetched for optimal performance, -- as with the `frame.args` metatable in Scribunto core. -- -- The default argument lookup behaviour uses the child frame arguments -- first, then the parent frame arguments. There are numerous frame -- options to change this behaviour. -- -- The default value tidying behaviour trims parameter values if they -- are defined strings and treats blank strings as `nil`. This can be -- customised in the `getArgs` options. -- -- @param {frame|table} frame Scribunto frame object or -- Lua arguments table, passed from an invocation -- or Lua logic such as `frame:getParent()`. -- If this parameter does not have an `args` field -- and a `getParent` method, `frame` is assumed -- to be a Lua arguments table, such as the -- arguments from a named arguments call. -- @param[opt] {table} options Extraction/processing options. -- @param[opt] {boolean} options.trim -- Whether to trim the blank arguments present in -- the arguments table. Accepts `false` only. -- Default: `true`. -- @param[opt] {boolean} options.removeBlanks -- Whether to remove blank arguments from the -- arguments table. Does not shift sequential -- arguments removed by the processing stage. -- Accepts `false` only. Default: `true`. -- @param[opt] {function} options.valueFunc -- Custom value tidying function for use if the -- `trim` and `removeBlanks` options don't cover -- the developer's argument processing use case. -- @param[opt] {boolean} options.frameOnly -- Only read arguments from child frame (the -- `frame` parameter - usually invocation frame). -- @param[opt] {boolean} options.parentOnly -- Only read arguments from `frame` parent (the -- `frame` parameter - usually template frame). -- @param[opt] {boolean} options.parentFirst -- Argument lookup in the `frame` parent first, -- prioritised over the invocation frame arguments. -- @param[opt] {table} options.wrappers -- Individual value or array of values, listing -- wrapper title name(s) or article ID(s) to permit -- parent argument lookup from. -- @param[opt] {string|number} options.wrapper -- Alias of `options.wrappers` - contains title -- name or article ID to permit parent argument -- lookup from. -- @param[opt] {boolean} options.readOnly -- Whether to restrict write permissions to the -- arguments table. When set to a truthy value, -- an error will be thrown on any write attempt. -- @param[opt] {boolean} options.noOverwrite -- Whether to restrict overwrite attempts on -- existing argument keys in the arguments table. -- When set to a truthy value, an error will be -- thrown on any write attempt that would result -- in an existing argument being overwritten. -- @param[opt] {table} options.translate -- Map of parameter name aliases to their canonical -- argument parameter names. -- @param[opt] {table} options.backtranslate -- Map of canonical parameter names to their -- argument parameter aliases. -- Supersedes `options.translate` if both options -- are in use. -- @error[opt,317] 'bad value assigned to option "valueFunc" -- (function expected, got $type)' -- @error[opt,407] 'could not write to argument table key "$key"; -- the table is read-only' -- @error[opt,409] 'could not write to argument table key "$key"; -- overwriting existing arguments is not permitted' -- @return {table} Arguments extracted from invocation. -- The argument data is embedded as a metatable in -- the exported table and cannot be accessed with -- the `#` operator or @{table} library methods. -- However, the exported table can be written to if -- the `options.readOnly` flag parameter is not -- truthy. -- @usage -- -- local getArgs = require('Module:Arguments').getArgs -- function p.main(frame) -- local args = getArgs(frame, { -- wrapper = 'Template:<TEMPLATE>' -- }) -- -- Use the args table here. -- -- A common paradigm is `return p._main(args)`. -- -- This allows other Lua modules to access the -- -- main logic in a performant manner without a -- -- frame object. -- end -- -- @note Reference tags in the form of `<ref>` will -- generate phantom references when calling the -- @{pairs} iterator on the arguments table, -- **IF** the `<ref>` tag does not appear in the -- dependent module's wikitext output. function arguments.getArgs(frame, options) checkType('getArgs', 1, frame, 'table', true) checkType('getArgs', 2, options, 'table', true) frame = frame or {} options = options or {} -- Set up argument translation. options.translate = options.translate or {} if getmetatable(options.translate) == nil then setmetatable(options.translate, translate_mt) end if options.backtranslate == nil then options.backtranslate = {} for k,v in pairs(options.translate) do options.backtranslate[v] = k end end if options.backtranslate and getmetatable(options.backtranslate) == nil then setmetatable(options.backtranslate, { __index = function(t, k) if options.translate[k] ~= k then return nil else return k end end }) end -- Get the argument tables. If we were passed a valid frame object, -- get the frame arguments (fargs) and the parent frame arguments -- (pargs), depending on the options set and on the parent frame's -- availability. If we weren't passed a valid frame object, we are -- being called from another Lua module or from the debug console, -- so assume that we were passed a table of args directly, and -- assign it to a new variable (luaArgs). local fargs, pargs, luaArgs options.wrappers = options.wrappers or options.wrapper if type(frame.args) == 'table' and type(frame.getParent) == 'function' then -- The wrappers option makes Module:Arguments look up -- arguments in either the frame argument table or the -- parent argument table, but not both. This means that -- users can use either the #invoke syntax or a wrapper -- template without the loss of performance associated -- with looking arguments up in both the frame and the -- parent frame. -- The arguments will be fetched from the parent frame if -- the parent frame's title is present in options.wrapper; -- otherwise it will look up arguments in the frame object -- passed to getArgs. if options.wrappers then local parent = frame:getParent() if not parent then fargs = frame.args else local title = parent:getTitle():gsub('/sandbox$', '') local found = false if matchesTitle(options.wrappers, title) then found = true elseif type(options.wrappers) == 'table' then for _,v in pairs(options.wrappers) do if matchesTitle(v, title) then found = true break end end end -- We test for false specifically here so that nil (the -- default) acts like true. if found or options.frameOnly == false then pargs = parent.args end if not found or options.parentOnly == false then fargs = frame.args end end -- When options.wrapper isn't set, check the other options. else if not options.parentOnly then fargs = frame.args end if not options.frameOnly then local parent = frame:getParent() pargs = parent and parent.args or nil end end if options.parentFirst then fargs, pargs = pargs, fargs end else luaArgs = frame end -- Set the order of precedence of the argument tables. If the variables are -- nil, nothing will be added to the table, which is how we avoid clashes -- between the frame/parent args and the Lua args. local argTables = {fargs} argTables[#argTables + 1] = pargs argTables[#argTables + 1] = luaArgs -- Generate the tidyVal function. If it has been specified by the user, we -- use that; if not, we choose one of four functions depending on the -- options chosen. This is so that we don't have to call the options table -- every time the function is called. local tidyVal = options.valueFunc if tidyVal then if type(tidyVal) ~= 'function' then error(i18n:msg('error-value-func', type(tidyVal)), 2) end elseif options.trim ~= false then if options.removeBlanks ~= false then tidyVal = tidyValDefault else tidyVal = tidyValTrimOnly end else if options.removeBlanks ~= false then tidyVal = tidyValRemoveBlanksOnly else tidyVal = tidyValNoChange end end -- Set up the args, metaArgs and nilArgs tables. args will be the one -- accessed from functions, and metaArgs will hold the actual arguments. Nil -- arguments are memoized in nilArgs, and the metatable connects all of them -- together. local args, metaArgs, nilArgs, metatable = {}, {}, {}, {} setmetatable(args, metatable) -- Accepts multiple tables as input and merges their keys and values -- into one table. If a value is already present it is not overwritten; -- tables listed earlier have precedence. We are also memoizing nil -- values, which can be overwritten if they are 's' (soft). local function mergeArgs(tables) for _, t in ipairs(tables) do for key, val in pairs(t) do if metaArgs[key] == nil and nilArgs[key] ~= 'h' then local tidiedVal = tidyVal(key, val) if tidiedVal == nil then nilArgs[key] = 's' else metaArgs[key] = tidiedVal end end end end end -- Define metatable behaviour. Arguments are memoized in the metaArgs table, -- and are only fetched from the argument tables once. Fetching arguments -- from the argument tables is the most resource-intensive step in this -- module, so we try and avoid it where possible. For this reason, nil -- arguments are also memoized, in the nilArgs table. Also, we keep a record -- in the metatable of when pairs and ipairs have been called, so we do not -- run pairs and ipairs on the argument tables more than once. We also do -- not run ipairs on fargs and pargs if pairs has already been run, as all -- the arguments will already have been copied over. -- Fetches an argument when the args table is indexed. First we check -- to see if the value is memoized, and if not we try and fetch it from -- the argument tables. When we check memoization, we need to check -- metaArgs before nilArgs, as both can be non-nil at the same time. -- If the argument is not present in metaArgs, we also check whether -- pairs has been run yet. If pairs has already been run, we return nil. -- This is because all the arguments will have already been copied into -- metaArgs by the mergeArgs function, meaning that any other arguments -- must be nil. metatable.__index = function (t, key) if type(key) == 'string' then key = options.translate[key] end local val = metaArgs[key] if val ~= nil then return val elseif metatable.donePairs or nilArgs[key] then return nil end for _, argTable in ipairs(argTables) do local argTableVal = tidyVal(key, argTable[key]) if argTableVal ~= nil then metaArgs[key] = argTableVal return argTableVal end end nilArgs[key] = 'h' return nil end metatable.__newindex = function (t, key, val) -- This function is called when a module tries to add a new -- value to the args table, or tries to change an existing -- value. if type(key) == 'string' then key = options.translate[key] end if options.readOnly then error(i18n:msg('error-write-permission', tostring(key)), 2) elseif options.noOverwrite and args[key] ~= nil then error(i18n:msg('error-overwrite-permission', tostring(key)), 2) elseif val == nil then -- If the argument is to be overwritten with nil, we need to erase -- the value in metaArgs, so that __index, __pairs and __ipairs do -- not use a previous existing value, if present; and we also need -- to memoize the nil in nilArgs, so that the value isn't looked -- up in the argument tables if it is accessed again. metaArgs[key] = nil nilArgs[key] = 'h' else metaArgs[key] = val end end local function translatenext(invariant) local k, v = next(invariant.t, invariant.k) invariant.k = k if k == nil then return nil elseif type(k) ~= 'string' or not options.backtranslate then return k, v else local backtranslate = options.backtranslate[k] if backtranslate == nil then -- Skip this one. This is a tail call, so this -- won't cause stack overflow. return translatenext(invariant) else return backtranslate, v end end end -- This metamethod is called when pairs is run on the args table. metatable.__pairs = function () if not metatable.donePairs then mergeArgs(argTables) metatable.donePairs = true end return translatenext, { t = metaArgs } end -- This custom `ipairs`-style iterator uses our __index metamethod. local function inext(t, i) local v = t[i + 1] if v ~= nil then return i + 1, v end end -- This metamethod is called when ipairs is run on the args table. metatable.__ipairs = function (t) return inext, t, 0 end return args end return arguments 8f151b78a9f66ae5e814a79d0a47fdf0d8192ad2 Module:I18n 828 403 433 2024-05-28T17:16:08Z Geekette828 51691 Created page with "--- Copy/paste from https://commons.wiki.gg/wiki/Module:I18n --- I18n library for message storage in Lua datastores. -- The module is designed to enable message separation from modules & -- templates. It has support for handling language fallbacks. This -- module is a Lua port of [[I18n-js]] and i18n modules that can be loaded -- by it are editable through [[I18nEdit]]. -- -- @module i18n -- @version 1.4.0 -- @require Module:Entrypoint --..." Scribunto text/plain --- Copy/paste from https://commons.wiki.gg/wiki/Module:I18n --- I18n library for message storage in Lua datastores. -- The module is designed to enable message separation from modules & -- templates. It has support for handling language fallbacks. This -- module is a Lua port of [[I18n-js]] and i18n modules that can be loaded -- by it are editable through [[I18nEdit]]. -- -- @module i18n -- @version 1.4.0 -- @require Module:Entrypoint -- @require Module:Fallbacklist -- @author [[User:KockaAdmiralac|KockaAdmiralac]] -- @author [[User:Speedit|Speedit]] -- @attribution [[User:Cqm|Cqm]] -- @release stable -- @see [[I18n|I18n guide]] -- @see [[I18n-js]] -- @see [[I18nEdit]] -- <nowiki> local i18n, _i18n = {}, {} -- Module variables & dependencies. local title = mw.title.getCurrentTitle() local fallbacks = require('Module:Fallbacklist') local entrypoint = require('Module:Entrypoint') local uselang --- Argument substitution as $n where n > 0. -- @function _i18n.handleArgs -- @param {string} msg Message to substitute arguments into. -- @param {table} args Arguments table to substitute. -- @return {string} Resulting message. -- @local function _i18n.handleArgs(msg, args) for i, a in ipairs(args) do msg = (string.gsub(msg, '%$' .. tostring(i), tostring(a))) end return msg end --- Checks whether a language code is valid. -- @function _i18n.isValidCode -- @param {string} code Language code to check. -- @return {boolean} Whether the language code is valid. -- @local function _i18n.isValidCode(code) return type(code) == 'string' and #mw.language.fetchLanguageName(code) ~= 0 end --- Checks whether a message contains unprocessed wikitext. -- Used to optimise message getter by not preprocessing pure text. -- @function _i18n.isWikitext -- @param {string} msg Message to check. -- @return {boolean} Whether the message contains wikitext. function _i18n.isWikitext(msg) return type(msg) == 'string' and ( msg:find('%-%-%-%-') or msg:find('%f[^\n%z][;:*#] ') or msg:find('%f[^\n%z]==* *[^\n|]+ =*=%f[\n]') or msg:find('%b<>') or msg:find('\'\'') or msg:find('%[%b[]%]') or msg:find('{%b{}}') ) end --- I18n datastore class. -- This is used to control language translation and access to individual -- messages. The datastore instance provides language and message -- getter-setter methods, which can be used to internationalize Lua modules. -- The language methods (any ending in `Lang`) are all **chainable**. -- @type Data local Data = {} Data.__index = Data --- Datastore message getter utility. -- This method returns localized messages from the datastore corresponding -- to a `key`. These messages may have `$n` parameters, which can be -- replaced by optional argument strings supplied by the `msg` call. -- -- This function supports [[Lua reference manual#named_arguments|named -- arguments]]. The named argument syntax is more versatile despite its -- verbosity; it can be used to select message language & source(s). -- @function Data:msg -- @usage -- -- ds:msg{ -- key = 'message-name', -- lang = '', -- args = {...}, -- sources = {} -- } -- -- @usage -- -- ds:msg('message-name', ...) -- -- @param {string|table} opts Message configuration or key. -- @param[opt] {string} opts.key Message key to return from the -- datastore. -- @param[opt] {table} opts.args Arguments to substitute into the -- message (`$n`). -- @param[opt] {table} opts.sources Source names to limit to (see -- `Data:fromSources`). -- @param[opt] {table} opts.lang Temporary language to use (see -- `Data:inLang`). -- @param[opt] {string} ... Arguments to substitute into the message -- (`$n`). -- @error[115] {string} 'missing arguments in Data:msg' -- @return {string} Localised datastore message or `'<key>'`. function Data:msg(opts, ...) local frame = mw.getCurrentFrame() -- Argument normalization. if not self or not opts then error('missing arguments in Data:msg') end local key = type(opts) == 'table' and opts.key or opts local args = opts.args or {...} -- Configuration parameters. if opts.sources then self:fromSources(unpack(opts.sources)) end if opts.lang then self:inLang(opts.lang) end -- Source handling. local source_n = self.tempSources or self._sources local source_i = {} for n, i in pairs(source_n) do source_i[i] = n end self.tempSources = nil -- Language handling. local lang = self.tempLang or self.defaultLang self.tempLang = nil -- Message fetching. local msg for i, messages in ipairs(self._messages) do -- Message data. local msg = (messages[lang] or {})[key] -- Fallback support (experimental). for _, l in ipairs((fallbacks[lang] or {})) do if msg == nil then msg = (messages[l] or {})[key] end end -- Internal fallback to 'en'. msg = msg ~= nil and msg or messages.en[key] -- Handling argument substitution from Lua. if msg and source_i[i] and #args > 0 then msg = _i18n.handleArgs(msg, args) end if msg and source_i[i] and lang ~= 'qqx' then return frame and _i18n.isWikitext(msg) and frame:preprocess(mw.text.trim(msg)) or mw.text.trim(msg) end end return mw.text.nowiki('<' .. key .. '>') end --- Datastore template parameter getter utility. -- This method, given a table of arguments, tries to find a parameter's -- localized name in the datastore and returns its value, or nil if -- not present. -- -- This method always uses the wiki's content language. -- @function Data:parameter -- @param {string} parameter Parameter's key in the datastore -- @param {table} args Arguments to find the parameter in -- @error[176] {string} 'missing arguments in Data:parameter' -- @return {string|nil} Parameter's value or nil if not present function Data:parameter(key, args) -- Argument normalization. if not self or not key or not args then error('missing arguments in Data:parameter') end local contentLang = mw.language.getContentLanguage():getCode() -- Message fetching. for i, messages in ipairs(self._messages) do local msg = (messages[contentLang] or {})[key] if msg ~= nil and args[msg] ~= nil then return args[msg] end for _, l in ipairs((fallbacks[contentLang] or {})) do if msg == nil or args[msg] == nil then -- Check next fallback. msg = (messages[l] or {})[key] else -- A localized message was found. return args[msg] end end -- Fallback to English. msg = messages.en[key] if msg ~= nil and args[msg] ~= nil then return args[msg] end end end --- Datastore temporary source setter to a specificed subset of datastores. -- By default, messages are fetched from the datastore in the same -- order of priority as `i18n.loadMessages`. -- @function Data:fromSource -- @param {string} ... Source name(s) to use. -- @return {Data} Datastore instance. function Data:fromSource(...) local c = select('#', ...) if c ~= 0 then self.tempSources = {} for i = 1, c do local n = select(i, ...) if type(n) == 'string' and type(self._sources[n]) == 'number' then self.tempSources[n] = self._sources[n] end end end return self end --- Datastore default language getter. -- @function Data:getLang -- @return {string} Default language to serve datastore messages in. function Data:getLang() return self.defaultLang end --- Datastore language setter to `wgUserLanguage`. -- @function Data:useUserLang -- @return {Data} Datastore instance. -- @note Scribunto only registers `wgUserLanguage` when an -- invocation is at the top of the call stack. function Data:useUserLang() self.defaultLang = i18n.getLang() or self.defaultLang return self end --- Datastore language setter to `wgContentLanguage`. -- @function Data:useContentLang -- @return {Data} Datastore instance. function Data:useContentLang() self.defaultLang = mw.language.getContentLanguage():getCode() return self end --- Datastore language setter to specificed language. -- @function Data:useLang -- @param {string} code Language code to use. -- @return {Data} Datastore instance. function Data:useLang(code) self.defaultLang = _i18n.isValidCode(code) and code or self.defaultLang return self end --- Temporary datastore language setter to `wgUserLanguage`. -- The datastore language reverts to the default language in the next -- @{Data:msg} call. -- @function Data:inUserLang -- @return {Data} Datastore instance. function Data:inUserLang() self.tempLang = i18n.getLang() or self.tempLang return self end --- Temporary datastore language setter to `wgContentLanguage`. -- Only affects the next @{Data:msg} call. -- @function Data:inContentLang -- @return {Data} Datastore instance. function Data:inContentLang() self.tempLang = mw.language.getContentLanguage():getCode() return self end --- Temporary datastore language setter to a specificed language. -- Only affects the next @{Data:msg} call. -- @function Data:inLang -- @param {string} code Language code to use. -- @return {Data} Datastore instance. function Data:inLang(code) self.tempLang = _i18n.isValidCode(code) and code or self.tempLang return self end -- Package functions. --- Localized message getter by key. -- Can be used to fetch messages in a specific language code through `uselang` -- parameter. Extra numbered parameters can be supplied for substitution into -- the datastore message. -- @function i18n.getMsg -- @param {table} frame Frame table from invocation. -- @param {table} frame.args Metatable containing arguments. -- @param {string} frame.args[1] ROOTPAGENAME of i18n submodule. -- @param {string} frame.args[2] Key of i18n message. -- @param[opt] {string} frame.args.lang Default language of message. -- @error[271] 'missing arguments in i18n.getMsg' -- @return {string} I18n message in localised language. -- @usage {{i18n|getMsg|source|key|arg1|arg2|uselang {{=}} code}} function i18n.getMsg(frame) if not frame or not frame.args or not frame.args[1] or not frame.args[2] then error('missing arguments in i18n.getMsg') end local source = frame.args[1] local key = frame.args[2] -- Pass through extra arguments. local repl = {} for i, a in ipairs(frame.args) do if i >= 3 then repl[i-2] = a end end -- Load message data. local ds = i18n.loadMessages(source) -- Pass through language argument. ds:inLang(frame.args.uselang) -- Return message. return ds:msg { key = key, args = repl } end --- I18n message datastore loader. -- @function i18n.loadMessages -- @param {string} ... ROOTPAGENAME/path for target i18n -- submodules. -- @error[322] {string} 'no source supplied to i18n.loadMessages' -- @return {table} I18n datastore instance. -- @usage require('Dev:I18n').loadMessages('1', '2') function i18n.loadMessages(...) local ds local i = 0 local s = {} for j = 1, select('#', ...) do local source = select(j, ...) if type(source) == 'string' and source ~= '' then i = i + 1 s[source] = i if not ds then -- Instantiate datastore. ds = {} ds._messages = {} -- Set default language. setmetatable(ds, Data) ds:useUserLang() end source = string.gsub(source, '^.', mw.ustring.upper) source = mw.ustring.find(source, ':') and source or 'Module:' .. source .. '/i18n' ds._messages[i] = mw.loadData(source) end end if not ds then error('no source supplied to i18n.loadMessages') else -- Attach source index map. ds._sources = s -- Return datastore instance. return ds end end --- Language code getter. -- Can validate a template's language code through `uselang` parameter. -- @function i18n.getLang -- @usage {{i18n|getLang|uselang {{=}} code}} -- @return {string} Language code. function i18n.getLang() local frame = mw.getCurrentFrame() or {} local parentFrame = frame.getParent and frame:getParent() or {} local code = mw.language.getContentLanguage():getCode() local subPage = title.subpageText -- Language argument test. local langOverride = (frame.args or {}).uselang or (parentFrame.args or {}).uselang if _i18n.isValidCode(langOverride) then code = langOverride -- Subpage language test. elseif title.isSubpage and _i18n.isValidCode(subPage) then code = _i18n.isValidCode(subPage) and subPage or code -- User language test. elseif parentFrame.preprocess or frame.preprocess then uselang = uselang or parentFrame.preprocess and parentFrame:preprocess('{{int:lang}}') or frame:preprocess('{{int:lang}}') local decodedLang = mw.text.decode(uselang) if decodedLang ~= '<lang>' and decodedLang ~= '⧼lang⧽' then code = decodedLang == '(lang)' and 'qqx' or uselang end end return code end --- Template wrapper for [[Template:I18n]]. -- @function i18n.main -- @param {table} frame Frame invocation object. -- @return {string} Module output in template context. -- @usage {{#invoke:i18n|main}} i18n.main = entrypoint(i18n) return i18n -- </nowiki> d3acd651312903c5a94daefd42407c6a0ed7c14a Module:Fallbacklist 828 404 434 2024-05-28T17:16:38Z Geekette828 51691 Created page with "-- Language fallback rules for other Lua modules. -- @see https://commons.wikimedia.org/wiki/Module:Fallbacklist -- @release 2017-01-01T20:33:00.000Z -- @submodule return { -- crh (Crimean Tatar) cluster: crh-cyrl , crh-latn -> crh (Crimean Tatar) ['crh'] = {'crh-latn'}, ['crh-cyrl'] = {'crh', 'ru'}, ['crh-latn'] = {'crh'}, -- de (German) cluster: ['als'] = {'gsw', 'de'}, -- Alemannisch..." Scribunto text/plain -- Language fallback rules for other Lua modules. -- @see https://commons.wikimedia.org/wiki/Module:Fallbacklist -- @release 2017-01-01T20:33:00.000Z -- @submodule return { -- crh (Crimean Tatar) cluster: crh-cyrl , crh-latn -> crh (Crimean Tatar) ['crh'] = {'crh-latn'}, ['crh-cyrl'] = {'crh', 'ru'}, ['crh-latn'] = {'crh'}, -- de (German) cluster: ['als'] = {'gsw', 'de'}, -- Alemannisch ['bar'] = {'de'}, -- Bavarian ['de-at'] = {'de'}, -- Austrian German ['de-ch'] = {'de'}, -- Swiss High German ['de-formal'] = {'de'}, -- German (formal address) ['dsb'] = {'de'}, -- Lower Sorbian ['frr'] = {'de'}, -- Northern Frisian ['hsb'] = {'de'}, -- Upper Sorbian ['ksh'] = {'de'}, -- Colognian ['lb'] = {'de'}, -- Luxembourgish ['nds'] = {'nds-nl', 'de'}, -- Low German ['nds-nl'] = {'nds', 'nl'}, -- Low Saxon (Netherlands) ['pdc'] = {'de'}, -- Deitsch ['pdt'] = {'nds', 'de'}, -- Plautdietsch ['pfl'] = {'de'}, -- Pälzisch ['sli'] = {'de'}, -- Lower Silesian ['stq'] = {'de'}, -- Seeltersk ['vmf'] = {'de'}, -- Upper Franconian -- es (Spanish) cluster ['an'] = {'es'}, -- Aragonese ['arn'] = {'es'}, -- Mapuche ['ay'] = {'es'}, -- Aymara ['cbk-zam'] = {'es'}, -- Chavacano de Zamboanga ['gn'] = {'es'}, -- Guarani ['lad'] = {'es'}, -- Ladino ['nah'] = {'es'}, -- Nahuatl ['qu'] = {'es'}, -- Quechua ['qug'] = {'qu', 'es'}, -- Runa shimi -- et (Estonian) cluster ['liv'] = {'et'}, -- Līvõ kēļ ['vep'] = {'et'}, -- Veps ['vro'] = {'et'}, -- Võro ['fiu-vro'] = {'vro', 'et'}, -- Võro -- fa (Persian) cluster ['bcc'] = {'fa'}, -- Southern Balochi ['bqi'] = {'fa'}, -- Bakhtiari ['glk'] = {'fa'}, -- Gilaki ['mzn'] = {'fa'}, -- Mazandarani -- fi (Finnish) cluster: ['fit'] = {'fi'}, -- meänkieli ['vot'] = {'fi'}, -- Votic -- fr (French) cluster: ['bm'] = {'fr'}, -- Bambara ['br'] = {'fr'}, -- Breton ['co'] = {'fr'}, -- Corsican ['ff'] = {'fr'}, -- Fulah ['frc'] = {'fr'}, -- Cajun French ['frp'] = {'fr'}, -- Franco-Provençal ['ht'] = {'fr'}, -- Haitian ['ln'] = {'fr'}, -- Lingala ['mg'] = {'fr'}, -- Malagasy ['pcd'] = {'fr'}, -- Picard ['sg'] = {'fr'}, -- Sango ['ty'] = {'fr'}, -- Tahitian ['wa'] = {'fr'}, -- Walloon ['wo'] = {'fr'}, -- Wolof -- hi (Hindi) cluster ['anp'] = {'hi'}, -- Angika ['mai'] = {'hi'}, -- Maithili ['sa'] = {'hi'}, -- Sanskrit -- hif (Fiji Hindi) cluster: hif-deva , hif-latn -> hif (Fiji Hindi) ['hif'] = {'hif-latn'}, ['hif-deva'] = {'hif'}, ['hif-latn'] = {'hif'}, -- id (Indonesian) cluster ['min'] = {'id'}, -- Minangkabau ['ace'] = {'id'}, -- Achinese ['bug'] = {'id'}, -- Buginese ['bjn'] = {'id'}, -- Banjar ['jv'] = {'id'}, -- Javanese ['su'] = {'id'}, -- Sundanese ['map-bms'] = {'jv', 'id'}, -- Basa Banyumasan -- ike (Eastern Canadian Inuktitut) cluster: ike-cans , ike-latn -> ike (Eastern Canadian Inuktitut) ['ike-cans'] = {'ik'}, ['ike-latn'] = {'ik'}, -- it (Italian) cluster ['egl'] = {'it'}, -- Emiliàn ['eml'] = {'it'}, -- Emiliano-Romagnolo ['fur'] = {'it'}, -- Friulian ['lij'] = {'it'}, -- Ligure ['lmo'] = {'it'}, -- lumbaart ['nap'] = {'it'}, -- Neapolitan ['pms'] = {'it'}, -- Piedmontese ['rgn'] = {'it'}, -- Romagnol ['scn'] = {'it'}, -- Sicilian ['vec'] = {'it'}, -- vèneto -- kk (Kazakh) cluster: -- kk-arab , kk-cyrl , kk-latn , kk-cn , kk-kz , kk-tr -> kk (Kazakh) ['kk'] = {'kk-cyrl'}, -- Kazakh ['kk-arab'] = {'kk-cyrl', 'kk'}, -- Kazakh (Arabic script) ['kk-cn'] = {'kk-arab', 'kk-cyrl', 'kk'}, -- Kazakh (China) ['kk-cyrl'] = {'kk'}, -- Kazakh (Cyrillic script) ['kk-kz'] = {'kk', 'kk-cyrl'}, -- Kazakh (Kazakhstan) ['kk-latn'] = {'kk-cyrl', 'kk'}, -- Kazakh (Latin script) ['kk-tr'] = {'kk-latn', 'kk-cyrl', 'kk'}, -- Kazakh (Turkey) ['kaa'] = {'kk-latn', 'kk-cyrl'}, -- Kara-Kalpak -- ku (Kurdish) cluster: ku-latn , ku-arab -> ku (Kurdish) ['ku'] = {'ku-latn'}, ['ku-arab'] = {'ckb', 'ckb-arab', 'ku'}, -- كوردي (عەرەبی) ['ku-latn'] = {'ku'}, ['ckb'] = {'ckb-arab', 'ku'}, -- nl (Dutch) cluster ['af'] = {'nl'}, -- Afrikaans ['fy'] = {'nl'}, -- Western Frisian ['li'] = {'nl'}, -- Liechtenstein ['nl-informal'] = {'nl'}, -- Nederlands (informeel) ['vls'] = {'nl'}, -- Vlaams ['zea'] = {'nl'}, -- Zeeuws --pl (Polish) cluster ['csb'] = {'pl'}, -- Kashubian ['szl'] = {'pl'}, -- Silesian -- pt (Portuguese) cluster ['gl'] = {'pt'}, -- Galician ['mwl'] = {'pt'}, -- Mirandese ['pt-br'] = {'pt'}, -- Brazilian Portuguese -- ro (Romanian) cluster ['mo'] = {'ro'}, -- Moldavian ['rmy'] = {'ro'}, -- Romani -- ru (Russian) cluster ['ab'] = {'ru'}, -- Abkhazian ['av'] = {'ru'}, -- Avaric ['ba'] = {'ru'}, -- Bashkir ['be-tarask'] = {'ru'}, -- Belorussian ['ce'] = {'ru'}, -- Chechen ['crh-cyrl'] = {'ru'}, -- Crimean Tatar (Cyrillic script) ['cv'] = {'ru'}, -- Chuvash ['inh'] = {'ru'}, -- Ingush ['koi'] = {'ru'}, -- Komi-Permyak ['krc'] = {'ru'}, -- Karachay-Balkar ['kv'] = {'ru'}, -- Komi ['lbe'] = {'ru'}, -- лакку ['lez'] = {'ru'}, -- Lezghian ['mhr'] = {'ru'}, -- Eastern Mari ['mrj'] = {'ru'}, -- Hill Mari ['myv'] = {'ru'}, -- Erzya ['os'] = {'ru'}, -- Ossetic ['rue'] = {'uk', 'ru'}, -- Rusyn ['sah'] = {'ru'}, -- Sakha ['tt'] = {'tt-cyrl', 'ru'}, -- Tatar ['tt-cyrl'] = {'ru'}, -- Tatar (Cyrillic script) ['udm'] = {'ru'}, -- Udmurt ['uk'] = {'ru'}, -- Ukranian ['xal'] = {'ru'}, -- Kalmyk ['tt'] = {'tt-cyrl', 'ru'}, -- Tatar -- ruq (Megleno Romanian) cluster: ruq-cyrl , ruq-grek , ruq-latn -> ruq (Megleno Romanian) ['ruq'] = {'ruq-latn', 'ro'}, -- Megleno-Romanian ['ruq-cyrl'] = {'ruq', 'mk'}, -- Megleno-Romanian (Cyrillic script) ['ruq-grek'] = {'ruq'}, -- Megleno-Romanian (Greek script) ['ruq-latn'] = {'ro', 'ruq'}, -- Megleno-Romanian (Latin script) -- sr (Serbian) cluster: sr-ec , sr-el -> sr (Serbian) ['sr'] = {'sr-ec'}, ['sr-ec'] = {'sr'}, ['sr-el'] = {'sr'}, -- tg (Tajik) cluster: tg-cyrl , tg-latn -> tg (Tajik) ['tg'] = {'tg-cyrl'}, ['tg-cyrl'] = {'tg'}, ['tg-latn'] = {'tg'}, -- tr (Turkish) cluster ['gag'] = {'tr'}, -- Gagauz ['kiu'] = {'tr'}, -- Kirmanjki ['lzz'] = {'tr'}, -- Lazuri -- tt (Tatar) cluster: tt-cyrl , tt-latn -> tt (Tatar) ['tt-cyrl'] = {'tt'}, ['tt-latn'] = {'tt'}, -- zh (Chinese) cluster ['gan'] = {'gan-hant', 'zh-hant'}, -- Gan ['gan-hans'] = {'zh-hans'}, -- Simplified Gan script ['gan-hant'] = {'zh-hant', 'zh-hans'}, -- Traditional Gan script ['ii'] = {'zh-cn', 'zh-hans'}, -- Sichuan Yi ['wuu'] = {'zh-hans'}, -- Wu ['za'] = {'zh-hans'}, -- Zhuang ['zh-hans'] = {'zh-cn', 'zh-sg', 'zh-my', 'zh'}, -- Simplified Chinese ['zh-hant'] = {'zh-tw', 'zh-hk', 'zh-mo', 'zh'}, -- Traditional Chinese ['zh'] = {'zh-hans', 'zh-hant', 'zh-cn', 'zh-tw', 'zh-hk', 'zh-mo', 'zh-sg', 'zh-my'}, ['zh-cn'] = {'zh-hans', 'zh-sg', 'zh-my', 'zh'}, -- Chinese (Mainland China) ['zh-hk'] = {'zh-hant', 'zh-mo', 'zh-tw', 'zh'}, -- Chinese (Hong Kong) ['zh-mo'] = {'zh-hant', 'zh-hk', 'zh-tw', 'zh'}, -- Chinese (Macau) ['zh-my'] = {'zh-hans', 'zh-sg', 'zh-cn', 'zh'}, -- Chinese (Malaysia) ['zh-sg'] = {'zh-hans', 'zh-cn', 'zh-my', 'zh'}, -- Chinese (Singapore) ['zh-tw'] = {'zh-hant', 'zh-hk', 'zh-mo', 'zh'}, -- Chinese (Taiwan) ['zh-classical'] = {'lzh'}, -- Literary Chinese ['zh-min-nan'] = {'nan'}, -- Chinese (Min Nan) -> Min Nan Chinese ['zh-yue'] = {'yue'}, -- Yue Chinese -> Cantonese ------------------------ --------- misc --------- ------------------------ ['arz'] = {'ar'}, -- Egyptian Arabic -> Arabic ['azb'] = {'az'}, -- Southern Azerbaijani -> Azerbaijani ['be-x-old'] = {'be-tarask'}, -- be-x-old -> be-tarask (wrong to correct Taraškievica form of Belarusian orthography) ['bh'] = {'bho'}, -- Bihari -> Bhojpuri ['bpy'] = {'bn'}, -- Bishnupria Manipuri -> Bengali -- da ['jut'] = {'da'}, -- Jutish -> Danish ['kl'] = {'da'}, -- Kalaallisut -> Danish ['en-gb'] = {'en'}, -- Brexit -> English ['yi'] = {'he'}, -- Yiddish -> Hebrew ['iu'] = {'ike-cans'}, -- Inuktitut -> Eastern Canadian (Aboriginal syllabics) ['xmf'] = {'ka'}, -- Mingrelian -> Georgian ['kbd'] = {'kbd-cyrl', 'ru'}, -- Kabardian -> Адыгэбзэ ['tcy'] = {'kn'}, -- Tulu -> Kannada ['ko-kp'] = {'ko'}, -- 한국어 (조선) -> Korean ['ks'] = {'ks-arab'}, -- Kashmiri -> Kashmiri (Arabic script) -- lt ['bat-smg'] = {'sgs', 'lt'}, -- Samogitian -> Lithuanian ['sgs'] = {'lt'}, -- Samogitian -> Lithuanian ['ltg'] = {'lv'}, -- Latvian -> Latgalian ['dtp'] = {'ms'}, -- Central Dusun -> Malay ['no'] = {'nb'}, -- Norwegian (bokmål) -> Norwegian Bokmål ['roa-rup'] = {'rup'}, -- Aromanian (other Romance) -> Aromanian ['aln'] = {'sq'}, -- Gheg Albanian -> Albanian ['ug'] = {'ug-arab'}, -- Uyghur -> Uyghur (Arabic script) ['khw'] = {'ur'}, -- Khowar -> Urdu } 4429d04a3f1b787a6f708b5ecfa7bca2f251c9f9 Module:Entrypoint 828 405 435 2024-05-28T17:17:06Z Geekette828 51691 Created page with "--- Entrypoint templating wrapper for Scribunto packages. -- The module generates an entrypoint function that can execute Scribunto -- package calls in the template context. This allows a package to support -- both direct and template invocations. -- -- @script entrypoint -- @release stable -- @author [[User:8nml|8nml]] -- @param {table} package Scribunto package. -- @error[85] {string} 'you must specify..." Scribunto text/plain --- Entrypoint templating wrapper for Scribunto packages. -- The module generates an entrypoint function that can execute Scribunto -- package calls in the template context. This allows a package to support -- both direct and template invocations. -- -- @script entrypoint -- @release stable -- @author [[User:8nml|8nml]] -- @param {table} package Scribunto package. -- @error[85] {string} 'you must specify a function to call' -- @error[91] {string} 'the function you specified did not exist' -- @error[opt,95] {string} '$2 is not a function' -- @return {function} Template entrypoint - @{main}. -- @note Parent frames are not available in Entrypoint's -- `frame`. This is because recursive (grandparent) -- frame access is impossible in legacy Scribunto -- due to [[mw:Manual:Parser#Empty-argument expansion -- cache|empty-argument expansion cache]] limitations. -- @note As Entrypoint enables template access rather than -- a new extension hook, it does not work with named -- numeric parameters such as `1=` or `2=`. This may -- result in unexpected behaviour such as Entrypoint -- and module errors. --- Stateless, sequential Lua iterator. -- @function inext -- @param {table} t Invariant state to loop over. -- @param {number} i Control variable (current index). -- @return[opt] {number} Next index. -- @return[opt] {number|string|table|boolean} Next value. -- @see [[github:lua/lua/blob/v5.1.1/lbaselib.c#L247]] local inext = select(1, ipairs{}) --- Check for MediaWiki version 1.25. -- The concurrent Scribunto release adds a type check for package functions. -- @variable {boolean} func_check -- @see [[mw:MediaWiki 1.24/wmf7#Scribunto]] local func_check = tonumber(mw.site.currentVersion:match('^%d+.%d+')) >= 1.25 --- MediaWiki error message getter. -- Mimics Scribunto error formatting for script errors. -- @function msg -- @param {string} key MediaWiki i18n message key. -- @param[opt] {string} fn_name Name of package function. -- @return {string} Formatted lowercase message. -- @local local function msg(key, fn_name) return select(1, mw.message.new(key) :plain() :match(':%s*(.-)[.۔。෴։።]?$') :gsub('^.', mw.ustring.lower) :gsub('$2', fn_name or '$2') ) end --- Template entrypoint function generated by this module. -- @function main -- @param {Frame} frame Scribunto frame in module context. -- @return {string} Module output in template context. return function(package) return function(f) local frame = f:getParent() local args_mt = {} local arg_cache = {} args_mt.__pairs = function() return next, arg_cache, nil end args_mt.__ipairs = function() return inext, arg_cache, 0 end args_mt.__index = function(t, k) return arg_cache[k] end for key, val in pairs(frame.args) do arg_cache[key] = val end local fn_name = table.remove(arg_cache, 1) f.args = setmetatable({}, args_mt) frame.args = setmetatable({}, args_mt) if not fn_name then error(msg('scribunto-common-nofunction')) end fn_name = mw.text.trim(fn_name) if not package[fn_name] then error(msg('scribunto-common-nosuchfunction', fn_name)) end if func_check and type(package[fn_name]) ~= 'function' then error(msg('scribunto-common-notafunction', fn_name)) end return package[fn_name](frame) end end f0768621d1686f573000dcdfe833ab3f53814e0b Module:Arguments/i18n 828 406 436 2024-05-28T17:17:31Z Geekette828 51691 Created page with "-- Copied from https://commons.wiki.gg/wiki/Module:Arguments/i18n -- <nowiki> return { ["en"] = { ["error-value-func"] = "bad value assigned to option \"valueFunc\" (function expected, got $1)", ["error-overwrite-permission"] = "could not write to argument table key \"$1\"; overwriting existing arguments is not permitted", ["error-write-permission"] = "could not write to argument table key \"$1\"; the table is read-only" }, ["qqq"] = {..." Scribunto text/plain -- Copied from https://commons.wiki.gg/wiki/Module:Arguments/i18n -- <nowiki> return { ["en"] = { ["error-value-func"] = "bad value assigned to option \"valueFunc\" (function expected, got $1)", ["error-overwrite-permission"] = "could not write to argument table key \"$1\"; overwriting existing arguments is not permitted", ["error-write-permission"] = "could not write to argument table key \"$1\"; the table is read-only" }, ["qqq"] = { ["error-value-func"] = "Error thrown when options.valueFunc is not a function", ["error-overwrite-permission"] = "Error thrown after write attempt to existing arguments when options.noOverwrite is true", ["error-write-permission"] = "Error thrown after write attempt to arguments when options.readOnly is true" }, ["bn"] = { ["error-value-func"] = "\"valueFunc\" কে খারাপ ভ্যালু দেয়া হয়েছে। (fফাঙ্কশনের অপক্ষা করতে $1 পেয়েছে)", ["error-overwrite-permission"] = "আর্গুমেন্ট টেবিল কী \"$1\" কে লিখতে পারেনি ; আগের থেকে থাকা আর্গুমেন্ট কে ওভাররাইট করার অনুমতি নাই", ["error-write-permission"] = "আর্গুমেন্ট টেবিল কী \"$1\" কে ওভাররাইট করতে পৰ যায়নি; এই টেবিলটি রিড-অনলি" }, ["de"] = { ["error-value-func"] = "der Option „valueFunc“ wurde ein falscher Wert zugewiesen (Funktion erwartet, erhielt $1)", ["error-overwrite-permission"] = "konnte nicht in den Argument Tabellenschlüssel „$1“ schreiben; das Überschreiben vorhandener Argumente ist nicht erlaubt", ["error-write-permission"] = "konnte nicht in das Argument Tabellenschlüssel „$1“ schreiben; die Tabelle ist schreibgeschützt" }, ["fr"] = { ["error-value-func"] = "valeur invalide assignée à une option \"valueFunc\" (fonction espérée, donne $1)", ["error-overwrite-permission"] = "impossible d'écrire dans la clé du tableau des arguments \"$1\"; l'écrasement des arguments existants n'est pas autorisé", ["error-write-permission"] = "impossible d'écrire dans la clé du tableau des arguments \"$1\"; le tableau est en mode lecture-seule" }, ["hi"] = { ["error-value-func"] = "\"valueFunc\" फंक्शन को बुरा वैल्यू असाइन किया गया है (फंक्शन की अपेक्षा किया, $1 [पाया)", ["error-overwrite-permission"] = "आर्गुमेंट टेबल के \"$1\" पर ओवरराइट नहीं कर पाए; पहली से रहने वाले आर्गुमेंट को ओवरराइट करने की अनुमति नहीं है", ["error-write-permission"] = " \"$1\" पर नहीं लिख पाए; यह टेबल रीड-ओनली है" }, ["ru"] = { ["error-value-func"] = "параметру \"valueFunc\" присвоено неверное значение (ожидается функция, предоставлено $1)", ["error-overwrite-permission"] = "невозможно записать аргумент \"$1\": перезаписывать существующие аргументы запрещено", ["error-write-permission"] = "невозможно записать аргумент \"$1\": таблица находится в режиме \"только чтение\"" }, ["tr"] = { ["error-value-func"] = "\"valueFunc\" seçeneğine atanan hatalı değer (işlev beklendi, $1 alındı)", ["error-overwrite-permission"] = "\"$1\" bağımsız değişken tablosu anahtarına yazılamadı; mevcut bağımsız değişkenlerin üzerine yazılmasına izin verilmez", ["error-write-permission"] = "\"$1\" bağımsız değişken tablosu anahtarına yazılamadı; tablo salt okunurdur" } } db082ef1f5032e698f2c2afddccbf8ca474ecaba Category:Lua templates 14 407 437 2024-05-28T17:19:14Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Infoicon templates 14 408 438 2024-05-28T17:19:15Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Category:Design templates 14 409 439 2024-05-28T17:19:18Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e File:Even bigger space pack.png 6 410 446 2024-05-28T17:28:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Max space pack.png 6 411 447 2024-05-28T17:28:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Squash seeds.png 6 412 448 2024-05-28T17:34:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Bigger space pack.png 6 413 449 2024-05-28T17:36:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad General store 0 414 450 2024-05-28T17:36:44Z Geekette828 51691 Created page with " ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max sp..." wikitext text/x-wiki ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at the Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at the Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at the Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at the Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at the Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop/footer}} </tabber> 87dfbddcc5f848a4212cb93696c8b9de01756aee Template:Recipe/none 10 415 451 2024-05-28T17:45:28Z Geekette828 51691 Created page with "<onlyinclude>There are no recipes to craft {{icon|{{PAGENAME}}}}.</onlyinclude><noinclude></noinclude>" wikitext text/x-wiki <onlyinclude>There are no recipes to craft {{icon|{{PAGENAME}}}}.</onlyinclude><noinclude></noinclude> 61b3da8d03e7204c3dba80fa0ad33cef82527cc6 452 451 2024-05-28T17:45:49Z Geekette828 51691 wikitext text/x-wiki <includeonly>There are no recipes to craft {{icon|{{PAGENAME}}}}.</includeonly><noinclude></noinclude> d45401e94a712fd3cb1c8fa9698250ef8ca09905 Template:Item as drop 10 416 453 2024-05-28T17:47:06Z Geekette828 51691 Created page with "<includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude>" wikitext text/x-wiki <includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude> 2a308bb00ace0419f20673e34869bf4517703e9a Template:Item as quest reward 10 417 454 2024-05-28T17:47:25Z Geekette828 51691 Created page with "<includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude>" wikitext text/x-wiki <includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude> 2a308bb00ace0419f20673e34869bf4517703e9a Template:Item as ingredient 10 418 455 2024-05-28T17:47:50Z Geekette828 51691 Created page with "<includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude>" wikitext text/x-wiki <includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude> 2a308bb00ace0419f20673e34869bf4517703e9a Template:Item required for quest 10 419 456 2024-05-28T17:48:01Z Geekette828 51691 Created page with "<includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude>" wikitext text/x-wiki <includeonly>Coming soon!</includeonly><noinclude>{{documentation}}</noinclude> 2a308bb00ace0419f20673e34869bf4517703e9a Template:Purchased at 10 391 457 421 2024-05-28T17:48:37Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Shop_inventory |join= <!-- corresponds to join on --> |fields= shopName, cost, note |where= itemName="{{{1|{{PAGENAME}}}}}" |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Purchased at/phantom |intro= '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}''' can be purchased from the following location(s):<br> {{{!}} class="article-table" style="max-width:35%;" !Sold At !Cost !Notes |outro= {{!}}} |delimiter= |default= {{icon|{{ucfirst:{{{1|{{PAGENAME}}}}}}}}} cannot be purchased from any vendor. }}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Cargo query templates]]</noinclude> 5310f01cbc539fdd0aee34cd08df6fec2b3e5431 File:General store.png 6 420 458 2024-05-28T17:49:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Purchased at/phantom 10 388 459 418 2024-05-28T17:50:49Z Geekette828 51691 wikitext text/x-wiki <includeonly><!-- --> |- | {{icon|{{{shopName|}}}|notext=true|size=50}} | style="text-align:center;" | {{{cost|}}}{{icon|credits}} | style="text-align:center;" | {{{note|&mdash;}}} </includeonly><noinclude>Part of the {{T|Purchased at}} template. This template controls how the results of the Cargo Query is laid out. [[Category:Phantom templates]] </noinclude> 395c12986816856549af1771f7f3d5a305e56459 462 459 2024-05-28T17:52:13Z Geekette828 51691 wikitext text/x-wiki <includeonly><!-- --> |- | {{icon|{{{shopName|}}}|notext=true|size=50}} | style="text-align:center;" | {{{cost|}}}{{credits}} | style="text-align:center;" | {{{note|&mdash;}}} </includeonly><noinclude>Part of the {{T|Purchased at}} template. This template controls how the results of the Cargo Query is laid out. [[Category:Phantom templates]] </noinclude> c6e5c40b6d42a71cb3ce7d2e8d4fe8cdcf16cf8e Template:Credits 10 421 460 2024-05-28T17:51:50Z Geekette828 51691 Created page with "{{icon|credits|size=20|notext=true}}" wikitext text/x-wiki {{icon|credits|size=20|notext=true}} 284132df95eca68a2afad264f2e6788dd83d0672 461 460 2024-05-28T17:52:04Z Geekette828 51691 wikitext text/x-wiki &nbsp;{{icon|credits|size=20|notext=true}} 4dfc7b0936578e9217a5bb537f7091414f5cf061 Template:Gifted item 10 422 463 2024-05-28T18:00:13Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Gifted item|main}}</includeonly><noinclude>{{Documentation}} [[Category:Gifting templates]] [[Category:Lua templates]]</noinclude>" wikitext text/x-wiki <includeonly>{{#invoke:Gifted item|main}}</includeonly><noinclude>{{Documentation}} [[Category:Gifting templates]] [[Category:Lua templates]]</noinclude> d21eb6c0a2978311fa1a954e9d91dca6899571d4 File:Portrait crop Lin.png 6 226 464 250 2024-05-28T18:04:26Z Geekette828 51691 Geekette828 moved page [[File:Lin crop portrait.png]] to [[File:Portrait crop Lin.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b Module:Gifted item 828 423 465 2024-05-28T18:04:31Z Geekette828 51691 Created page with "local p = {} local lib = require('Module:Feature') local Icon_list = require('Module:Icon list').buildList local characters = mw.loadData('Module:Gifted item/data') local order = { 'love', 'like', 'neutral', 'dislike'} local categories = mw.html.create() local noDupe = {} local blankReturn = { love = 'No character loves this item.', like = 'No character likes this item.', neutral = 'No character is neutral towards this item.', dislike = 'No character dislikes this it..." Scribunto text/plain local p = {} local lib = require('Module:Feature') local Icon_list = require('Module:Icon list').buildList local characters = mw.loadData('Module:Gifted item/data') local order = { 'love', 'like', 'neutral', 'dislike'} local categories = mw.html.create() local noDupe = {} local blankReturn = { love = 'No character loves this item.', like = 'No character likes this item.', neutral = 'No character is neutral towards this item.', dislike = 'No character dislikes this item.', } local function adj(preference, cap) if preference == 'neutral' then if cap then return 'Neutral' else return 'neutral' end else if cap then return preference:gsub("^%l", string.upper) .. 'd' else return preference .. 'd' end end end function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true }) return p._main(args) end function p._main(args) local data = p.parseCharacters(args) local result = mw.html.create('table'):addClass('article-table tdc1 tdbg1 tdwid1 tablelarge') local tr = result:tag('tr') tr:tag('th'):css{ width = '10%' } tr:tag('th'):wikitext('Characters') -- mw.logObject(data) --build table for _, preference in ipairs(order) do local tr = result:tag('tr') --type if preference == 'neutral' then tr:tag('th'):wikitext('Neutral') else tr:tag('th'):wikitext(adj(preference, true)) end --characters local td = tr:tag('td') if next(data[preference]) == nil then td:tag('i'):wikitext(blankReturn[preference]) else local ul = td:tag('ul') local list = {} local settings = { prefix = ' portrait crop ' } for _, character in ipairs(characters) do if data[preference][character] and (noDupe[character] == nil or noDupe[character] == preference) then table.insert(list, character) if noDupe[character] == nil then noDupe[character] = preference end end end -- adding cols = 6 was breaking mobile views -- if #list >= 1 then settings.cols = 6 end td:node(Icon_list(list, settings)) end end --add categories -- result:node(require('Module:Namespace detect').main{main=categories}) --return table with categories return result end function p.parseCharacters(args) local data = { love = {}, like = {}, neutral = {}, dislike = {}, } for _, preference in ipairs(order) do if lib.isNotEmpty(args[preference]) then if args[preference] == 'universal' then for _, character in ipairs(characters) do data[preference][character] = true end else for _, character in ipairs(lib.split(args[preference], ';')) do if noDupe[character] == nil then noDupe[character] = preference end if noDupe[character] == preference then data[preference][character] = true end end end end end --return parsed characters return data end return p eec17915d9d64295c4383b89ff99b54cdf4d8374 Module:Gifted item/data 828 424 466 2024-05-28T18:05:25Z Geekette828 51691 Created page with "return { 'Lin', 'Piper', }" Scribunto text/plain return { 'Lin', 'Piper', } 389fbaaa2b62169d536fdff341b0857ac7729ae7 Module:Icon list 828 425 467 2024-05-28T18:05:58Z Geekette828 51691 Created page with "local p = {} local lib = require('Module:Feature') local Icon = require('Module:Icon')._main local checkbox = mw.html.create('input'):attr('type', 'checkbox') function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Icon list' } }) return p._main(args) end function p._main(args) local input = args[1] or '' local itemDelim = args.delim or ';' local items = lib.split(input..." Scribunto text/plain local p = {} local lib = require('Module:Feature') local Icon = require('Module:Icon')._main local checkbox = mw.html.create('input'):attr('type', 'checkbox') function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Icon list' } }) return p._main(args) end function p._main(args) local input = args[1] or '' local itemDelim = args.delim or ';' local items = lib.split(input, itemDelim) if next(items) == nil then return mw.html.create() else return p.buildList(items, args) end end local function splitNote(entry, notePattern) if notePattern then item, note = entry:match(notePattern) if item == nil then -- will be nil if note is not present return entry end return item, note end return entry end local function splitParams(entry, paramDelim) if entry:find('{.-}') then local params = string.match(entry, '{(.-)}') entry = entry:gsub('{.-}', '') params = lib.split(params, paramDelim) local returns = {} for i, param in ipairs(params) do local name, val = string.match(param, '^%s*(.-)%s*=%s*(.-)%s*$') if name ~= nil and name ~= '' and val ~= nil then --named params returns[name] = val elseif param ~= nil and param ~= '' then --unnamed params table.insert(returns, param) end end return entry, returns end return entry, {} end function p.buildList(items, args) local countDelim = args.amount_delim or '*' local qualityDelim = args.quality_delim or '/' local paramDelim = args.param_delim or '$' local noteDelim = args.note_delim or '»' local textPrefixDelim = args.text_prefix_delim or '«' -- put all text after the first noteDelim into the second capture local notePattern if lib.isNotEmpty(noteDelim) then notePattern = '^(.-)' .. noteDelim .. '(.*)$' end -- list container local container = mw.html.create():tag('span') if args.cols and tonumber(args.cols) ~= nil then container = mw.html.create():tag('div'):addClass('columntemplate'):css{ ['-moz-column-count'] = args.cols, ['-webkit-column-count'] = args.cols, ['column-count'] = args.cols } end container:addClass('icon-list-container') -- icon list local list = container:tag('span') if args.bullet_list then list = container:tag('ul') elseif args.inline then list:addClass('icon-list-inline') elseif args.inline_list then list:addClass('icon-list-inline-sentence') else list:addClass('icon-list') end for i, str in ipairs(items) do if not lib.isEmpty(str) then local ret = list if args.bullet_list then ret = list:tag('li') end if args.checkable then ret = list:tag('li'):node(checkbox) end for num, entry in ipairs(lib.split(str, '//')) do local entry, iconArgs = splitParams(entry, paramDelim) --check for entry-specific params local pre, note = splitNote(entry, notePattern) --check for entry-specific note local pre_parts = lib.split(pre, qualityDelim) --check for entry-specific note local item = pre_parts[1] local quality = pre_parts[2] local item_parts = lib.split(item, countDelim) --check for entry-specific amount local text_prefix_parts = lib.split(item_parts[1], textPrefixDelim) -- check for entry-specific prefix local textPrefix = text_prefix_parts[2] -- prefix is a text modifier only, so the link should not include it local name = text_prefix_parts[1] local amount = item_parts[2] --set icon arguments without replacing those set by entry-specific params iconArgs.name = iconArgs[1] or iconArgs.name or name iconArgs.amount = iconArgs.amount or iconArgs[2] or amount or args.amount or args[2] iconArgs.note = iconArgs.note or note iconArgs.q = iconArgs.quality or quality or args.quality iconArgs.text = iconArgs.text or args.text iconArgs.textPrefix = iconArgs.textPrefix or args.textPrefix or textPrefix iconArgs.size = iconArgs.size or args.size iconArgs.link = iconArgs.link or args.link or link iconArgs.ext = iconArgs.ext or args.ext iconArgs.notext = iconArgs.notext or args.notext iconArgs.nolink = iconArgs.nolink or args.nolink iconArgs.prefix = iconArgs.prefix or args.prefix iconArgs.suffix = iconArgs.suffix or args.suffix -- mw.logObject(iconArgs) if num > 1 then ret:tag('i'):wikitext(' or ') end ret:node(Icon(iconArgs)) end end end return container end return p 46cfd970b25311bdf5d75386168077df6550fda2 Template:Icon list 10 426 468 2024-05-28T18:06:16Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Icon list|main}}</includeonly><noinclude>{{Documentation}}[[Category:Lua templates]][[Category:Design templates]]</noinclude>" wikitext text/x-wiki <includeonly>{{#invoke:Icon list|main}}</includeonly><noinclude>{{Documentation}}[[Category:Lua templates]][[Category:Design templates]]</noinclude> bc8698d4f6b1610b3b34caecbfbcc482d7903309 File:Portrait crop Piper.png 6 218 469 242 2024-05-28T18:06:57Z Geekette828 51691 Geekette828 moved page [[File:Piper crop portrait.png]] to [[File:Portrait crop Piper.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b Template:Agriculture navbox 10 427 470 2024-05-28T18:12:14Z Geekette828 51691 Created page with "<includeonly>{{clear}} {| class="article-table tablemedium" style="margin: 3em auto;" ! Agriculture |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | seeds | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Seeds |- |{{Navbox DPL|Seeds}} |}<!-- END SEEDS BEGIN CROPS --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | crops | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Crops |- |{{Navbox DPL|Crops}} |}<!-- END C..." wikitext text/x-wiki <includeonly>{{clear}} {| class="article-table tablemedium" style="margin: 3em auto;" ! Agriculture |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | seeds | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Seeds |- |{{Navbox DPL|Seeds}} |}<!-- END SEEDS BEGIN CROPS --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | crops | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Crops |- |{{Navbox DPL|Crops}} |}<!-- END CROPS BEGIN TREES --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | Trees | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Trees |- |{{Navbox DPL|Trees}} |}<!-- END BRINESTONE DEEPS CROPS END NAVBOX --> |} </includeonly><noinclude>{{documentation}} [[Category:Navbox templates]] </noinclude> 9787934c02ac193f77be7ee953257af8c2e83b90 Category:Navbox templates 14 428 471 2024-05-28T18:12:27Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Navbox DPL 10 429 472 2024-05-28T18:13:53Z Geekette828 51691 Created page with "<includeonly>{{#DPL: |namespace= |skipthispage=no |category = {{{1|}}}{{#if:{{{or|}}}|¦{{{or}}}|}} |category = {{{2|{{{and2|}}}}}} |category = {{{3|{{{and3|}}}}}} |categorymatch = {{#if:{{{categorymatch|}}}|{{{categorymatch|}}}|}} |titlematch = {{#if:{{{titlematch|}}}|{{{titlematch|}}}|}} |nottitlematch = {{#if:{{{nottitlematch|}}}|{{{nottitlematch|}}}|}} |notcategory = Upcoming content |notcategorymatch={{{not|}}} |notcategorymatch={{{not2|}}} |notcategorymat..." wikitext text/x-wiki <includeonly>{{#DPL: |namespace= |skipthispage=no |category = {{{1|}}}{{#if:{{{or|}}}|¦{{{or}}}|}} |category = {{{2|{{{and2|}}}}}} |category = {{{3|{{{and3|}}}}}} |categorymatch = {{#if:{{{categorymatch|}}}|{{{categorymatch|}}}|}} |titlematch = {{#if:{{{titlematch|}}}|{{{titlematch|}}}|}} |nottitlematch = {{#if:{{{nottitlematch|}}}|{{{nottitlematch|}}}|}} |notcategory = Upcoming content |notcategorymatch={{{not|}}} |notcategorymatch={{{not2|}}} |notcategorymatch={{{not3|}}} |notcategorymatch={{{not4|}}} |notcategorymatch={{{not5|}}} |notcategorymatch={{{not6|}}} |notcategorymatch={{{not7|}}} |notcategorymatch={{{not8|}}} |notcategorymatch={{{not9|}}} |ordermethod = title |mode = inline |inlinetext = &nbsp;&bull;&#32; |allowcachedresults=true }}</includeonly><noinclude>{{Documentation}} [[Category:DPL result templates]] [[Category:Navbox templates]] </noinclude> 55846990a7d2ce020028a1bdf5844a83b8775f2f Category:DPL result templates 14 430 473 2024-05-28T18:14:05Z Geekette828 51691 Created page with "[[Category:DPL templates]]" wikitext text/x-wiki [[Category:DPL templates]] eceae64e69c88bfa216647cb4ed1e45ca2474f55 Category:DPL templates 14 431 474 2024-05-28T18:14:15Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Navbox DPL/doc 10 432 475 2024-05-28T18:14:28Z Geekette828 51691 Created page with "{{Tocright}} This template queries hidden categories using [https://community.fandom.com/wiki/Help:DynamicPageList DPL] to produce a list of items based on set categories. This will display the name of items in a list with bullets between each result. This is primarlly used for the results of a NavBox. ==Syntax== <syntaxhighlight lang="wikitext"> {{Navbox DPL |Category of item to display |Second category of item to display. Works like "and": Items that are apart of bot..." wikitext text/x-wiki {{Tocright}} This template queries hidden categories using [https://community.fandom.com/wiki/Help:DynamicPageList DPL] to produce a list of items based on set categories. This will display the name of items in a list with bullets between each result. This is primarlly used for the results of a NavBox. ==Syntax== <syntaxhighlight lang="wikitext"> {{Navbox DPL |Category of item to display |Second category of item to display. Works like "and": Items that are apart of both Category 1 AND Category 2. (optional) |Third category of item to display. Works like "and": Items that are apart of both Category 1 AND Category 2 AND Category 3. (optional) |or = Additional category of item to display: Items that are apart of either Category 1 OR Category 2. (optional) |categorymatch = Select articles based on categories. You can specify one or more patterns (SQL LIKE); a page will be selected if at least one of its categories matches at least one of the patterns. Use % as wild cards. (optional) |titlematch = If the user wants to match part of a title. Use % as wild cards. (optional) |nottitlematch = If the user wants to pull pages that don't have something in the title. Use % as wild cards. (optional) |not = Do not display item in this category: Items that are apart of Category 1, but not Category 2. (optional) |not2 = Do not display item in this category: Items that are apart of Category 1, but not Category 2 nor part of category 3. This goes up to 9. (optional) }} </syntaxhighlight> b5e22c5237c3f8ec4829963d4067e6baf5118d16 Template:Tocright 10 433 476 2024-05-28T18:14:50Z Geekette828 51691 Created page with "<includeonly><div style="float:right; clear:{{{clear|right}}}; margin-bottom:.5em; padding:.5em 0 .8em 1.4em; background:transparent; max-width:20em;">__TOC__</div></includeonly><noinclude> {{documentation}}</noinclude>" wikitext text/x-wiki <includeonly><div style="float:right; clear:{{{clear|right}}}; margin-bottom:.5em; padding:.5em 0 .8em 1.4em; background:transparent; max-width:20em;">__TOC__</div></includeonly><noinclude> {{documentation}}</noinclude> e05836955bb88801d044130d69154745f45c7642 478 476 2024-05-28T18:15:37Z Geekette828 51691 wikitext text/x-wiki <includeonly><div style="float:right; clear:{{{clear|right}}}; margin-bottom:.5em; padding:.5em 0 .8em 1.4em; background:transparent; max-width:20em;">__TOC__</div></includeonly><noinclude> {{documentation}} [[Category:General wiki templates]]</noinclude> 11a49dcfc8ce49db04aa4fe1e3e1fa9298689c42 Template:Tocright/doc 10 434 477 2024-05-28T18:15:23Z Geekette828 51691 Created page with ";Description {{t|tocright}} forces the auto-generated Table of Contents for an article to appear floated to the right side of the page, in order to improve article layout. <noinclude>[[Category:Template documentation]]</noinclude>" wikitext text/x-wiki ;Description {{t|tocright}} forces the auto-generated Table of Contents for an article to appear floated to the right side of the page, in order to improve article layout. <noinclude>[[Category:Template documentation]]</noinclude> 23c13bb180cd991718b063c9f6882027ebac66b5 Category:General wiki templates 14 435 479 2024-05-28T18:15:45Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Item infobox 10 209 480 408 2024-05-28T18:18:01Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{Energy Gain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> aa8d9b9953f237e16b5bd86e16d35bdd4959ec9d 481 480 2024-05-28T18:19:23Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> a7d3ef512b255bd247a076156278ab0e67164c56 493 481 2024-05-28T19:31:19Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts--> {{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 8b504d970d0bd32a249b0c7c9792c9945bbec692 496 493 2024-05-28T19:34:14Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts--> {{#if:{{{energyGain}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 0bc028a98ddc5641c3b6f584ab263716472815da 498 496 2024-05-28T19:39:26Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Energy Gain = {{{energyGain|}}} |Health Gain = {{{healthGain|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 8577490d98ac004002b4fd49fcf378b13977ebe5 Template:Seeds table/Cargo attach 10 437 483 2024-05-28T18:40:48Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Seeds |name=String |planet=String |growth=String |maxHarvest=Integer |cropYield=Integer }} [[Category:Cargo declaration_templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Seeds |name=String |planet=String |growth=String |maxHarvest=Integer |cropYield=Integer }} [[Category:Cargo declaration_templates]] 2ff8f9f04117a7eba83c38ad451a813177cdba76 485 483 2024-05-28T18:42:22Z Geekette828 51691 wikitext text/x-wiki <includeonly></includeonly><noinclude>{{#cargo_attach:_table=Seeds}}[[Category:Cargo attach templates]]</noinclude> 49fbfbc815c0b36c0bbdcaeac9445ae4b7372da2 Template:Seeds table 10 438 484 2024-05-28T18:41:35Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Seeds |name=String |planet=String |growth=String |maxHarvest=Integer |cropYield=Integer }} [[Category:Cargo declaration_templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Seeds |name=String |planet=String |growth=String |maxHarvest=Integer |cropYield=Integer }} [[Category:Cargo declaration_templates]] 2ff8f9f04117a7eba83c38ad451a813177cdba76 Template:Seed infobox 10 439 486 2024-05-28T18:45:33Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} |Grow..." wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 3a4c47b8c46d3ac73358545fcf89aff7b713d5c5 487 486 2024-05-28T18:46:25Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Sell = {{{sellValue|}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> a0f3585d61d91164f6b99c2e1ed954470d275282 488 487 2024-05-28T18:52:56Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type, Planet, Produces |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type=Seed |Planet = {{icon|{{{planet|}}}}} |Produces= {{item list|{{{produces|}}}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} |Sell = {{{sellValue|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> fbdcd6037547b4436a325dcec438b2c052fde3b7 502 488 2024-05-28T19:52:57Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type, Planet, Produces |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type=Seed |Planet = {{icon|{{{planet|}}}}} |Produces= {{item list|{{{produces|}}}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} |Sell = {{{sellValue|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Seeds |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Seeds table/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> f276b577eb7562f1e6ce020a3c897e8e53a77a2b File:Iceladus.png 6 440 489 2024-05-28T18:58:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Blueberry seeds 0 442 491 2024-05-28T19:17:11Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be..." wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| |style="vertical-align:bottom;"|[[File:Blueberry growth 0.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |- !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 0feabf5da15f9370f26234f40e57ef343ebc4514 Template:Recipe 10 195 492 211 2024-05-28T19:20:06Z Geekette828 51691 wikitext text/x-wiki <includeonly> |- |{{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }}{{#if: {{{yield|}}} |<!-- If yield is true-->&nbsp;<small>({{{yield|}}})</small> |<!-- If yield is false-->}} |{{icon list|{{{ingredients|}}}}} |{{#titleparts:{{{machine|}}}}} |{{{time|}}} <!-- Setting if equals to namespace 0 store the data -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Recipes |product={{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |yield={{{yield|}}} |machine={{#titleparts:{{{machine|}}}}} |time={{{time|}}} |recipeSource={{{recipeSource|}}} |recipeId={{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}} }}<!-- Defining the recipieID variable, so it can be sent to the Recipe ingredients template -->{{#vardefine:recipeId|{{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}}<!-- end vardefine -->}}<!-- Sending the ingredients and quantity to the Recipe ingredients template, where it will be parsed out and stored in the Recipe_ingredients table. -->{{#arraymaptemplate:{{{ingredients|}}}|Recipe ingredients|;|}}<!-- End if equals-->}}</includeonly><noinclude> {{#cargo_attach:_table=Recipes}}{{documentation}} [[Category:Templates]] [[Category:Cargo store templates]] </noinclude> 47f2ae0c193319a73b05941157b5e4ada27a3954 500 492 2024-05-28T19:46:51Z Geekette828 51691 wikitext text/x-wiki <includeonly> |- |{{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }}{{#if: {{{yield|}}} |<!-- If yield is true-->&nbsp;<small>({{{yield|}}})</small> |<!-- If yield is false-->}} |{{icon list|{{{ingredients|}}}}} |{{#titleparts:{{{machine|}}}}} |{{{time|}}} <!-- Setting if equals to namespace 0 store the data -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Recipes |product={{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |yield={{{yield|}}} |machine={{#titleparts:{{{machine|}}}}} |time={{{time|}}} |recipeSource={{{recipeSource|}}} |recipeId={{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}} }}<!-- Defining the recipieID variable, so it can be sent to the Recipe ingredients template -->{{#vardefine:recipeId|{{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}}<!-- end vardefine -->}}<!-- Sending the ingredients and quantity to the Recipe ingredients template, where it will be parsed out and stored in the Recipe_ingredients table. -->{{#arraymaptemplate:{{{ingredients|}}}|Recipe ingredients|;|}}<!-- End if equals-->}}</includeonly><noinclude> {{#cargo_attach:_table=Recipes}}{{documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> 13eb42355195554cffa62036b5cb2ad7a79f9889 General store 0 414 494 450 2024-05-28T19:31:40Z Geekette828 51691 Geekette828 moved page [[General Store]] to [[General store]] wikitext text/x-wiki ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at the Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at the Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at the Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at the Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at the Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop/footer}} </tabber> 87dfbddcc5f848a4212cb93696c8b9de01756aee Template:Item infobox/Cargo declare 10 207 497 410 2024-05-28T19:36:09Z Geekette828 51691 wikitext text/x-wiki {{#cargo_declare:_table=Items |name=String |sellValue=Integer |sellSuper=Integer |itemType=String }} [[Category:Cargo declaration_templates]] 9c104e4c2cea49a2d15c4fc326602cf73e307ca9 File:Dark matter.png 6 444 499 2024-05-28T19:44:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Recipe/doc 10 194 501 223 2024-05-28T19:49:03Z Geekette828 51691 wikitext text/x-wiki This template is part of the {{T|Recipe}} group of templates. '''Related templates, modules, and tables:'''<br> *{{t|Recipe/Cargo declare}} *{{t|Recipe ingredients}} *This template should be accompanied by two runner templates: {{T|Recipe/header}} and {{T|Recipe/footer}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Recipe |product = Name of item. If left blank will take the {{PAGENAME}} (optional). (plain text string) |machine = Name of the machine this recipe is crafted at. (plain text string) |ingredients = List of ingredients to make this recipe. Separated by ";". Use * to indicate an amount of an item. (plain text string) |time = Time it takes for the recipe to be complete (e.g 2hr or 20m). (plain text string) |yield = If this recipe yields more than one product (optional). (numeric) |recipeSource = How to obtain this recipe. (plain text string) |id = If there is more than one recipe to craft the item, this must be incremented so each recipe on the page has a unique id. If left blank it will default to "1". (numeric) }} </syntaxhighlight> &nbsp; 9550b0810775ea572be40ff57c22111f0abf8ddc Dark matter fuel 0 385 503 415 2024-05-28T19:56:34Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |name = Dark matter fuel |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark Matter Fuel |machine=Dark Matter Refiner |ingredients=Dark Matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark Matter Fuel |machine=Advanced Dark Matter Refiner |ingredients=Dark Matter*10 |time=6hr |id=2}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 89245a87da463ec528c58aea57a3c5ab698e6792 Template:Produces table 10 445 504 2024-05-28T20:14:18Z Geekette828 51691 Created page with "<includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Produces |name={{#var:name}} |produces={{{1}}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Recipe_ingredients |name=String |produces=string }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude>" wikitext text/x-wiki <includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Produces |name={{#var:name}} |produces={{{1}}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Recipe_ingredients |name=String |produces=string }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude> 0632a44231dd6cb9bca2fa624306e4e3d84628f9 505 504 2024-05-28T20:14:33Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Produces |name={{#var:name}} |produces={{{1}}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Produces |name=String |produces=string }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude> 88273fbac25b06adf822012139f858e47c821e00 Blueberry seeds 0 442 506 491 2024-05-28T20:14:48Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| |style="vertical-align:bottom;"|[[File:Blueberry growth 0.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |- !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 7ee588bcad2b4f17ac5845c8aab3d2b110768687 Template:Seed infobox 10 439 507 502 2024-05-28T20:15:11Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type, Planet, Produces |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type=Seed |Planet = {{icon|{{{planet|}}}}} |Produces= {{item list|{{{produces|}}}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} |Sell = {{{sellValue|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Seeds |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- Defining the name variable, so it can be sent to the downstream templates -->{{#vardefine:name|{{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }}}}<!-- Sending the "produces" to the produces table template, where it will be parsed out and stored in the Produces table. -->{{#arraymaptemplate:{{{produces|}}}|Produces table|;|}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Seeds table/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 8703ad5409595f28123004e92653367070fa67f5 543 507 2024-05-28T21:20:14Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type, Planet, Produces |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type=Seed |Planet = {{icon|{{{planet|}}}}} |Produces= {{icon list|{{{produces|}}}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} |Sell = {{{sellValue|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Seeds |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- Defining the name variable, so it can be sent to the downstream templates -->{{#vardefine:name|{{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }}}}<!-- Sending the "produces" to the produces table template, where it will be parsed out and stored in the Produces table. -->{{#arraymaptemplate:{{{produces|}}}|Produces table|;|}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Seeds table/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> a422c27a84aa27828e3b90f2e72892250592713e Template:Seed infobox/doc 10 446 508 2024-05-28T20:24:58Z Geekette828 51691 Created page with " Infobox for seeds in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Seeds table]] - Declares the [[Special:CargoTables/Seeds|seeds cargo table]] *[[Template:Produces table]] - Parses the "produces" data, and stores it in the [[Special:CargoTables/Produces|produces cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{S..." wikitext text/x-wiki Infobox for seeds in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Seeds table]] - Declares the [[Special:CargoTables/Seeds|seeds cargo table]] *[[Template:Produces table]] - Parses the "produces" data, and stores it in the [[Special:CargoTables/Produces|produces cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Seed infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Merchant Data --> |sellValue = Sell value of the item. (integer) <!-- Item Data --> |planet = Name of the planet the ship must be orbiting to have these seeds show up in the store. (plain text string) |produces = Name of the normal crops that come from this seed. (plain text string, use ";" as a delimiter) <!-- Growth Data --> |growth = Number of days for initial growth. (integer) |maxHarvest = Number of times the player can harvest the crop before reseeding. (integer) |cropYield = Average number of crops per harvest. (integer) }}</syntaxhighlight> ==Examples== ===Blueberry Seeds=== {{Seed infobox |name = Blueberry seeds |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} <pre> {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} </pre> {{clear}} 3a38bef8166924758de30437d39cfd337db290f1 Module:Gifted item/data 828 424 509 466 2024-05-28T20:46:47Z Geekette828 51691 Scribunto text/plain return { 'Cat', 'Chip', 'CienaVia', 'CPU', 'Doc12', 'Edward', 'Frances', 'I-1900', 'Jimmy', 'Kaida', 'Kendall', 'Lauren', 'Lin', 'Max', 'Piolt', 'Piper', 'Robert', 'Shinji', 'Soot', 'Sprout', 'Steven', 'Stewart' } 500e75fb49358d0029384baa4a7aba08529dfb3e 513 509 2024-05-28T20:55:11Z Geekette828 51691 Scribunto text/plain return { 'Cat', 'Chip', 'CienaVia', 'CPU', 'Doc12', 'Edward', 'Frances', 'I-1900', 'Jimmy', 'Kaida', 'Kendall', 'Fiji', 'Lauren', 'Lin', 'Max', 'Piolt', 'Piper', 'Robert', 'Shinji', 'Soot', 'Sprout', 'Steven', 'Stewart' } 5177a52e91404ec613b76e5beaddf5f0a615b841 517 513 2024-05-28T20:57:09Z Geekette828 51691 Scribunto text/plain return { 'Cat', 'Chip', 'CienaVia', 'CPU', 'Doc12', 'Edward', 'Frances', 'Hermy', 'I-1900', 'Jimmy', 'Kaida', 'Kendall', 'Fiji', 'Lauren', 'Lin', 'Max', 'Piolt', 'Piper', 'Robert', 'Shinji', 'Soot', 'Sprout', 'Steven', 'Stewart' } e63c2506a6c7f8ad04795730d749d7cf6df2803b 522 517 2024-05-28T20:59:59Z Geekette828 51691 Scribunto text/plain return { 'Cat', 'Chip', 'CienaVia', 'CPU', 'Doc12', 'Edward', 'Fiji', 'Frances', 'Hermy', 'I-1900', 'Jimmy', 'Kaida', 'Kendall', 'Lauren', 'Lin', 'Max', 'Piolt', 'Piper', 'Robert', 'Shinji', 'Soot', 'Sprout', 'Steven', 'Stewart' } f70747313d1e00f354154b941d15bbfbce3d271b 525 522 2024-05-28T21:02:49Z Geekette828 51691 Scribunto text/plain return { 'Cat', 'Chip', 'CienaVia', 'CPU', 'Doc12', 'Edward', 'Fiji', 'Frances', 'Hermy', 'I-1900', 'Jimmy', 'Kaida', 'Kendall', 'Lauren', 'Lin', 'Max', 'Pilot', 'Piper', 'Robert', 'Shinji', 'Soot', 'Sprout', 'Steven', 'Stewart' } 23f16a1cbc7029725799820dc38258a3c0f2e730 File:Portrait crop Cat.png 6 447 510 2024-05-28T20:50:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Chip.png 6 448 511 2024-05-28T20:52:50Z Geekette828 51691 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Portrait crop CienaVia.png 6 449 512 2024-05-28T20:53:11Z Geekette828 51691 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Portrait crop CPU.png 6 450 514 2024-05-28T20:56:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Doc12.png 6 451 515 2024-05-28T20:56:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Edward.png 6 452 516 2024-05-28T20:56:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Frances.png 6 453 518 2024-05-28T20:58:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop I-1900.png 6 454 519 2024-05-28T20:58:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Jimmy.png 6 455 520 2024-05-28T20:58:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Hermy.png 6 456 521 2024-05-28T20:59:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Fiji.png 6 457 523 2024-05-28T21:00:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Kaida.png 6 458 524 2024-05-28T21:02:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Kendall.png 6 459 526 2024-05-28T21:03:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Lauren.png 6 460 527 2024-05-28T21:03:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Max.png 6 461 528 2024-05-28T21:03:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Robert.png 6 462 529 2024-05-28T21:04:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Shinji.png 6 463 530 2024-05-28T21:04:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Soot.png 6 464 531 2024-05-28T21:04:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Sprout.png 6 465 532 2024-05-28T21:04:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Steven.png 6 466 533 2024-05-28T21:05:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Portrait crop Stewart.png 6 467 534 2024-05-28T21:05:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Category:Gifting templates 14 468 535 2024-05-28T21:05:52Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Gifted item/doc 10 469 536 2024-05-28T21:08:34Z Geekette828 51691 Created page with "{{Tocright}} This template is used to display how much different NPC's like or dislike an item. It should be displayed on the item pages, rather than NPC pages. There are only 4 categories of gifting: Love, Like, Neutral, Dislike. '''Related Modules, Templates, or Tables:'''<br> *This template requires [[Module:Gifted item]] *If new NPC's are added in the future, add them to [[Module:Gifted item/data]] for them to be automatically added to the "universal" list. This me..." wikitext text/x-wiki {{Tocright}} This template is used to display how much different NPC's like or dislike an item. It should be displayed on the item pages, rather than NPC pages. There are only 4 categories of gifting: Love, Like, Neutral, Dislike. '''Related Modules, Templates, or Tables:'''<br> *This template requires [[Module:Gifted item]] *If new NPC's are added in the future, add them to [[Module:Gifted item/data]] for them to be automatically added to the "universal" list. This means anywhere "universal" is used, it will automatically pull in the new NPC's without updating every page. The 'universal" list will remove any NPC names in any of the other categories. ==Syntax== <syntaxhighlight lang="wikitext"> {{Gifted item |love = |like = |neutral = |dislike = }} </syntaxhighlight> * For all parameters: list NPC names separated by semicolons. The order does not matter as they will be sorted alphabetically automatically. ==Example== <pre> {{Gifted item |love = Cat; Lin |like = Jimmy; CPU |neutral = universal |dislike = Robert }} </pre> {{Gifted item |love = Cat; Lin |like = Jimmy; CPU |neutral = universal |dislike = Robert }} <noinclude>[[Category:Template documentation]]</noinclude> 6f3407dbd8f5a6a8898849a7ddd2da8f8012d1ae Template:Shop/doc 10 470 537 2024-05-28T21:13:10Z Geekette828 51691 Created page with " This template merchant table for shops. It stores item and price information in the [[Special:CargoTables/Shop_inventory|shop inventory table]]. '''Related Modules, Templates, or Tables:'''<br> *{{T|Shop/Cargo declare}} declares the table for the [[Special:CargoTables/Shop_inventory|shop inventory table]]. *This template should be accompanied by two runner templates: {{T|Shop/header}} and {{T|Shop/footer}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Shop | item nam..." wikitext text/x-wiki This template merchant table for shops. It stores item and price information in the [[Special:CargoTables/Shop_inventory|shop inventory table]]. '''Related Modules, Templates, or Tables:'''<br> *{{T|Shop/Cargo declare}} declares the table for the [[Special:CargoTables/Shop_inventory|shop inventory table]]. *This template should be accompanied by two runner templates: {{T|Shop/header}} and {{T|Shop/footer}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Shop | item name | cost |note = Any specific notes about the item. (optional) |link = Changes the link used for the displayed text and the image. (optional |img = Changes the image that is displayed for this item or character. (optional) |ext = Changes the extension of the displayed image. Used when there is no png file available. (optional) }} </syntaxhighlight> 83cc9672b666c81894b5d6fc3515358e6af14728 538 537 2024-05-28T21:13:24Z Geekette828 51691 wikitext text/x-wiki This template merchant table for shops. It stores item and price information in the [[Special:CargoTables/Shop_inventory|shop inventory table]]. '''Related Modules, Templates, or Tables:'''<br> *{{T|Shop/Cargo declare}} declares the table for the [[Special:CargoTables/Shop_inventory|shop inventory table]]. *This template should be accompanied by two runner templates: {{T|Shop/header}} and {{T|Shop/footer}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Shop | item name | cost |note = Any specific notes about the item. (optional) |link = Changes the link used for the displayed text and the image. (optional |img = Changes the image that is displayed for this item or character. (optional) |ext = Changes the extension of the displayed image. Used when there is no png file available. (optional) }} </syntaxhighlight> <noinclude>[[Category:Template documentation]]</noinclude> 051ba44b7436e53ec87745684a7d5400844d6e2a File:Portrait crop Pilot.png 6 471 539 2024-05-28T21:14:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Icon list/doc 10 472 540 2024-05-28T21:16:23Z Geekette828 51691 Created page with "{{tocright}} Creates a list of {{T|Icon}}. '''Dependencies:'''<br>Uses [[Module:Icon list]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Icon list |List of items. Separated by semi-colons (;) Use Asterisk (*) to note quantity |nolink = When this is set to true, the name of the item will appear, but will not link to the corresponding page. (optional) |notext = When this is set to true, the name of the item will not appear, but the icon will still link to the corresp..." wikitext text/x-wiki {{tocright}} Creates a list of {{T|Icon}}. '''Dependencies:'''<br>Uses [[Module:Icon list]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Icon list |List of items. Separated by semi-colons (;) Use Asterisk (*) to note quantity |nolink = When this is set to true, the name of the item will appear, but will not link to the corresponding page. (optional) |notext = When this is set to true, the name of the item will not appear, but the icon will still link to the corresponding page. (optional) </syntaxhighlight> ==Examples== ===Only Image=== <pre>{{Icon list|Blueberries; Blueberry seeds; Radiated blueberries|notext=1}}</pre> {{Icon list|Blueberries; Blueberry seeds; Radiated blueberries|notext=1}} === No Link, Inline === <pre>{{Icon list|Blueberries; Blueberry seeds; Radiated blueberries|inline_list=1|nolink=1}}</pre> {{Icon list|Blueberries; Blueberry seeds; Radiated blueberries|inline_list=1|nolink=1}} <noinclude>[[Category:Template documentation]]</noinclude> 901d0c8ad79ed8469ffb88b50fa235a558d65004 Template:Credits 10 421 541 461 2024-05-28T21:17:48Z Geekette828 51691 wikitext text/x-wiki <includeonly>&nbsp;{{icon|credits|size=20|notext=true}}</includeonly><noinclude>{{documentation}} [[Category:Image templates]] </noinclude> f3211aeea4b42e0b7dda1de6a5ffbd87518e9459 Category:Image templates 14 473 542 2024-05-28T21:18:01Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Credits/doc 10 474 544 2024-05-28T21:21:41Z Geekette828 51691 Created page with "This template shows the currency icon, with a link to the currency's page, but no words ==Syntax== <syntaxhighlight lang="wikitext"> {{credits}} </syntaxhighlight> ==Example== <pre>{{credits}}</pre> {{credits}} <noinclude>[[Category:Template documentation]]</noinclude>" wikitext text/x-wiki This template shows the currency icon, with a link to the currency's page, but no words ==Syntax== <syntaxhighlight lang="wikitext"> {{credits}} </syntaxhighlight> ==Example== <pre>{{credits}}</pre> {{credits}} <noinclude>[[Category:Template documentation]]</noinclude> 3a2027d0fc9d304210f8c821c6700212534b5e83 Credits 0 475 545 2024-05-28T21:23:22Z Geekette828 51691 Created page with "{{stub}} Credits are the currency used in space." wikitext text/x-wiki {{stub}} Credits are the currency used in space. 907e6ead9ce6cead38cc70dab8ab20d71a60f24d Template:Item as ingredient/phantom 10 477 547 2024-05-28T21:28:17Z Geekette828 51691 Created page with "<includeonly> |- | {{icon|{{{r.product|}}}|x={{{r.yield|}}}}} | {{icon list|{{{Ingredients|}}}|delim=,}} | {{icon|{{{r.machine|}}}|notext=true|size=40}} | {{{r.time|}}} | style="text-align:center;" | {{{it.sell|}}}{{credits}} </includeonly><noinclude>{{Documentation}} [[Category:Phantom templates]] </noinclude>" wikitext text/x-wiki <includeonly> |- | {{icon|{{{r.product|}}}|x={{{r.yield|}}}}} | {{icon list|{{{Ingredients|}}}|delim=,}} | {{icon|{{{r.machine|}}}|notext=true|size=40}} | {{{r.time|}}} | style="text-align:center;" | {{{it.sell|}}}{{credits}} </includeonly><noinclude>{{Documentation}} [[Category:Phantom templates]] </noinclude> e039b08242ba4101f78acf393d45f112e99641a5 Template:Recipe/doc 10 194 548 501 2024-05-28T21:29:38Z Geekette828 51691 wikitext text/x-wiki This template is part of the {{T|Recipe}} group of templates. '''Related templates, modules, and tables:'''<br> *{{t|Recipe/Cargo declare}} *{{t|Recipe ingredients}} *This template should be accompanied by two runner templates: {{T|Recipe/header}} and {{T|Recipe/footer}} ==Syntax== <syntaxhighlight lang="wikitext"> {{Recipe |product = Name of item. If left blank will take the {{PAGENAME}} (optional). (plain text string) |machine = Name of the machine this recipe is crafted at. (plain text string) |ingredients = List of ingredients to make this recipe. Separated by ";". Use * to indicate an amount of an item. (plain text string) |time = Time it takes for the recipe to be complete (e.g 2hr or 20m). (plain text string) |yield = If this recipe yields more than one product (optional). (numeric) |recipeSource = How to obtain this recipe. (plain text string) |id = If there is more than one recipe to craft the item, this must be incremented so each recipe on the page has a unique id. If left blank it will default to "1". (numeric) }} </syntaxhighlight> <noinclude>[[Category:Template documentation]]</noinclude> e3283ef4e15ac9469365b623398da1f40f7aab19 Template:Item as ingredient/phantom/doc 10 478 549 2024-05-28T21:29:45Z Geekette828 51691 Created page with "Part of the {{T|Item as ingredient}} template. This template controls how the results of the Cargo Query is laid out. <noinclude>[[Category:Template documentation]]</noinclude>" wikitext text/x-wiki Part of the {{T|Item as ingredient}} template. This template controls how the results of the Cargo Query is laid out. <noinclude>[[Category:Template documentation]]</noinclude> 1362138791005135bab509a52ea867fc5e629939 Category:Phantom templates 14 479 551 2024-05-28T21:30:11Z Geekette828 51691 Created page with "[[Category:Templates]]" wikitext text/x-wiki [[Category:Templates]] 06eecdec29f6cb215c99cf216d1e3bdc8c30a95e Template:Item as ingredient 10 418 552 455 2024-05-28T21:30:37Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Recipes=r, Recipe_ingredients=ri1, Recipe_ingredients=ri2, Items=it |join= r.recipeId=ri1.recipeId, ri1.recipeId=ri2.recipeId, r.product=it.name |fields= r.product, r.machine, r.time, r.yield, r.recipesource, r.recipeId, it.sell, it.selltype, GROUP_CONCAT( ri2.ingredient, "*", ri2.quantity)=Ingredients |where = ri1.ingredient="{{{1|{{PAGENAME}}}}}" {{#if:{{{2|}}} |<!-- if "or" is true-->OR ri1.ingredient="{{{2|}}}" |<!-- if "or" is false -->}} |groupBy= ri1.recipeId |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Item as ingredient/phantom |intro= {{{!}} class="article-table tdc3 tdc4 tdc5" !Product ! style="max-width:15%{{!}} Ingredients !Workbench !Time !Sell Price |outro= {{!}}} |delimiter= |default= No crafting recipe needs '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}'''{{#if: {{{2|}}}|&nbsp;or '''{{ucfirst:{{{2|}}}}}'''|}} as an ingredient. }}</includeonly><noinclude>{{Documentation|}} [[Category:Cargo query templates]] [[Category:Data templates]]</noinclude> d0f8e011e66ba4b56269ecabf69eaea38dff4426 554 552 2024-05-28T21:32:50Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Recipes=r, Recipe_ingredients=ri1, Recipe_ingredients=ri2, Items=it |join= r.recipeId=ri1.recipeId, ri1.recipeId=ri2.recipeId, r.product=it.name |fields= r.product, r.machine, r.time, r.yield, r.recipesource, r.recipeId, it.sellValue, GROUP_CONCAT( ri2.ingredient, "*", ri2.quantity)=Ingredients |where = ri1.ingredient="{{{1|{{PAGENAME}}}}}" {{#if:{{{2|}}} |<!-- if "or" is true-->OR ri1.ingredient="{{{2|}}}" |<!-- if "or" is false -->}} |groupBy= ri1.recipeId |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Item as ingredient/phantom |intro= {{{!}} class="article-table tdc3 tdc4 tdc5" !Product ! style="max-width:15%{{!}} Ingredients !Workbench !Time !Sell Price |outro= {{!}}} |delimiter= |default= No crafting recipe needs '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}'''{{#if: {{{2|}}}|&nbsp;or '''{{ucfirst:{{{2|}}}}}'''|}} as an ingredient. }}</includeonly><noinclude>{{Documentation|}} [[Category:Cargo query templates]] [[Category:Data templates]]</noinclude> 340d49a09e3c7d2b69220c432b1014b978087440 555 554 2024-05-28T21:33:06Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Recipes=r, Recipe_ingredients=ri1, Recipe_ingredients=ri2, Items=it |join= r.recipeId=ri1.recipeId, ri1.recipeId=ri2.recipeId, r.product=it.name |fields= r.product, r.machine, r.time, r.yield, r.recipesource, r.recipeId, it.sellValue, GROUP_CONCAT( ri2.ingredient, "*", ri2.quantity)=Ingredients |where = ri1.ingredient="{{{1|{{PAGENAME}}}}}" {{#if:{{{2|}}} |<!-- if "or" is true-->OR ri1.ingredient="{{{2|}}}" |<!-- if "or" is false -->}} |groupBy= ri1.recipeId |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Item as ingredient/phantom |intro= {{{!}} class="article-table tdc3 tdc4 tdc5" !Product ! style="max-width:15%{{!}} Ingredients !Workbench !Time !Sell Price |outro= {{!}}} |delimiter= |default= No crafting recipe needs '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}'''{{#if: {{{2|}}}|&nbsp;or '''{{ucfirst:{{{2|}}}}}'''|}} as an ingredient. }}</includeonly><noinclude>{{Documentation}} [[Category:Cargo query templates]] [[Category:Data templates]]</noinclude> 7dee8e7bfe4e94dd17d1a668112da3851e61eb6d Template:Item as ingredient/doc 10 480 553 2024-05-28T21:32:22Z Geekette828 51691 Created page with "{{tocright}} This template queries the [[Special:CargoTables/Recipes|recipes]], [[Special:CargoTables/Recipe_ingredients|recipe ingredients]], and [[Special:CargoTables/Items|item]] cargo tables to produce a list of items that are crafted from a particular item. Every time a item page is saved, the data in the tables are refreshed, which will update calls to it. '''Related Templates/Modules:'''<br> *This template uses [[Module:CargoQuery]] for the ability to skin the re..." wikitext text/x-wiki {{tocright}} This template queries the [[Special:CargoTables/Recipes|recipes]], [[Special:CargoTables/Recipe_ingredients|recipe ingredients]], and [[Special:CargoTables/Items|item]] cargo tables to produce a list of items that are crafted from a particular item. Every time a item page is saved, the data in the tables are refreshed, which will update calls to it. '''Related Templates/Modules:'''<br> *This template uses [[Module:CargoQuery]] for the ability to skin the results inside of a template. *This template uses {{T|Item as ingredient/phantom}} as a shell of how the core rows of data get displayed. ==Syntax== <syntaxhighlight lang="wikitext"> {{Item as ingredient | Item Name (optional) | Second item name: "this OR that" (optional).}} </syntaxhighlight> * If no additional conditions are added, it will take the <nowiki>{{PAGENAME}}</nowiki>. * If the user adds a pipe + a item, it will use that item instead. ==Examples== ===Blueberries=== <pre> {{Item as ingredient|Blueberries}} </pre> {{Item as ingredient|Blueberries}} <noinclude>[[Category:Template documentation]]</noinclude> da57e857269e248546b0acf29cce3624e8496a2a Template:Recipe/none 10 415 556 452 2024-05-28T21:34:24Z Geekette828 51691 wikitext text/x-wiki <includeonly>There are no recipes to craft '''{{PAGENAME}}'''.</includeonly><noinclude></noinclude> a981f5c91878ab29a1018cc5635596dcd72583d3 Blueberries 0 481 557 2024-05-28T21:35:18Z Geekette828 51691 Created page with "{{Food infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} Blueberries are grown from {{icon|Blueberry seeds}}, and take '''ten days''' to grow. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {..." wikitext text/x-wiki {{Food infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} Blueberries are grown from {{icon|Blueberry seeds}}, and take '''ten days''' to grow. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|crops}} ed07b5779548c8f0016a175f2dd6603ddd9d4fc2 File:Sugar.png 6 482 558 2024-05-28T21:42:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Flour.png 6 483 559 2024-05-28T21:43:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Consumable infobox 10 484 560 2024-05-28T22:03:31Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{{seed|}}} |Energy Gain = {{{energyGain|}}} |Health Gain = {{{healthGain|}}} |..." wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{{seed|}}} |Energy Gain = {{{energyGain|}}} |Health Gain = {{{healthGain|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting categories based on itemType-->{{lc:{{#switch: {{{itemType|}}} |crop|crops=[[Category:Crops]][[Category:Consumables]] |food=[[Category:Food]][[Category:Consumables]] |medicine=[[Category:Medicine]][[Category:Consumables]] }} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 7fb672d59658e919d4b139a83310238ea86e0326 561 560 2024-05-28T22:04:27Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{{seed|}}} |Energy Gain = {{{energyGain|}}} |Health Gain = {{{healthGain|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting categories based on itemType-->{{#switch: {{lc:{{{itemType|}}}}} |crop|crops=[[Category:Crops]][[Category:Consumables]] |food=[[Category:Food]][[Category:Consumables]] |medicine=[[Category:Medicine]][[Category:Consumables]] }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> e78c15f9d2e154d6943ac6e895c7d13fb3461596 562 561 2024-05-28T22:07:57Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{icon|{{{seed|}}}}} |Energy Gain = {{icon|energy|notext=true}}+ {{{energyGain|}}} |Health Gain = {{icon|health|notext=true}}+ {{{healthGain|}}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting categories based on itemType-->{{#switch: {{lc:{{{itemType|}}}}} |crop|crops=[[Category:Crops]][[Category:Consumables]] |food=[[Category:Food]][[Category:Consumables]] |medicine=[[Category:Medicine]][[Category:Consumables]] }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 3353c18021647701cb26cc9de0a76da57d9ee1c9 566 562 2024-05-28T22:27:26Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{icon|{{{seed|}}}}} |Energy Gain = {{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting categories based on itemType-->{{#switch: {{lc:{{{itemType|}}}}} |crop|crops=[[Category:Crops]][[Category:Consumables]] |food=[[Category:Food]][[Category:Consumables]] |medicine=[[Category:Medicine]][[Category:Consumables]] }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 4e52dc5e1ba3ff665d10c7ab50aa696755f87d01 567 566 2024-05-28T22:28:15Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{#if:{{{seed|}}}|{{icon|{{{seed|}}}}}|}} |Energy Gain = {{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Sell = {{{sellValue|}}}, {{{sellSuper|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting categories based on itemType-->{{#switch: {{lc:{{{itemType|}}}}} |crop|crops=[[Category:Crops]][[Category:Consumables]] |food=[[Category:Food]][[Category:Consumables]] |medicine=[[Category:Medicine]][[Category:Consumables]] }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 543f84c26bce294221c3f031c80d3aaf9bb6f4d5 577 567 2024-05-28T22:41:06Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = Consumable | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Seed, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Seed={{#if:{{{seed|}}}|{{icon|{{{seed|}}}}}|}} |Energy Gain = {{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Sell = {{{sellValue|}}}{{credits}}{{#if:{{{sellSuper|}}}|<br>{{icon|super item|notext=true|size=20}}{{{sellSuper|}}}{{credits}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting categories based on itemType-->{{#switch: {{lc:{{{itemType|}}}}} |crop|crops=[[Category:Crops]][[Category:Consumables]] |food=[[Category:Food]][[Category:Consumables]] |medicine=[[Category:Medicine]][[Category:Consumables]] }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> f9097196d848e200bc53ba071fc74ef6c5561091 File:Energy.png 6 485 563 2024-05-28T22:08:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Health.png 6 486 564 2024-05-28T22:08:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Super item.png 6 487 565 2024-05-28T22:20:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Blueberry muffin 0 488 568 2024-05-28T22:28:46Z Geekette828 51691 Created page with "{{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Food |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} '''Blueberry muffins''' are a crafted food item the player can prepare in their kitchen. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe |machine = Kitchen |ingredients = blueberries*2;sugar*1;flour*1 |time = instant |yield = 1 |recipeSource = |id = 1 }} {..." wikitext text/x-wiki {{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Food |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} '''Blueberry muffins''' are a crafted food item the player can prepare in their kitchen. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe |machine = Kitchen |ingredients = blueberries*2;sugar*1;flour*1 |time = instant |yield = 1 |recipeSource = |id = 1 }} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Food navbox}} bf346cf3d59f00fe0bc6619f0ca772a6bf0e5bad 573 568 2024-05-28T22:35:46Z Geekette828 51691 wikitext text/x-wiki {{Consumable infobox |sellValue = 135 |sellSuper = <!-- Item Data --> |itemType = Food |energyGain = 75 |healthGain = 38 |energyGainS = |healthGainS = }} '''Blueberry muffins''' are a crafted food item the player can prepare in their kitchen. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe |machine = Kitchen |ingredients = blueberries*2;sugar*1;flour*1 |time = instant |yield = 1 |recipeSource = |id = 1 }} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Food navbox}} 0c4276d2d1f4fba56fc2903382a36c5b4ee25b4f Blueberries 0 481 569 557 2024-05-28T22:28:53Z Geekette828 51691 wikitext text/x-wiki {{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} Blueberries are grown from {{icon|Blueberry seeds}}, and take '''ten days''' to grow. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|crops}} 53c2194d4e9a25a9b20fe160fe2d8aea2e62e518 572 569 2024-05-28T22:35:04Z Geekette828 51691 wikitext text/x-wiki {{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} Blueberries are grown from {{icon|Blueberry seeds}}, and take '''ten days''' to grow. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|crops}} d1bd3e65509e1e6003ddee174a4b8bcdb84f6484 File:Kitchen.png 6 489 570 2024-05-28T22:29:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Item as ingredient/phantom 10 477 571 547 2024-05-28T22:30:22Z Geekette828 51691 wikitext text/x-wiki <includeonly> |- | {{icon|{{{r.product|}}}|x={{{r.yield|}}}}} | {{icon list|{{{Ingredients|}}}|delim=,}} | {{icon|{{{r.machine|}}}|notext=true|size=40}} | {{{r.time|}}} | style="text-align:center;" | {{{it.sellValue|}}}{{credits}} </includeonly><noinclude>{{Documentation}} [[Category:Phantom templates]] </noinclude> f0ab1730560b178363e66c47fe800adae80f3d2d Template:Item infobox/doc 10 384 574 414 2024-05-28T22:37:22Z Geekette828 51691 wikitext text/x-wiki Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Item infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- These should be applicable to nearly every item --> |sellValue = Sell value of the normal crop. (integer) |sellSuper = Sell value of the super version of the item. (integer) |itemType = Type of item (plain text string) <!-- Restoration information --> |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) }}</syntaxhighlight> ==Examples== <noinclude>[[Category:Template documentation]]</noinclude> 4e312fd89a8de395f800996911a77c32a3f2e652 Template:Consumable infobox/doc 10 490 575 2024-05-28T22:38:35Z Geekette828 51691 Created page with " Infobox for consumables in the game. '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Consumable infobox <!-- These items are only needed if override from de..." wikitext text/x-wiki Infobox for consumables in the game. '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Consumable infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Merchant Data --> |sellValue = Sell value of the item. (integer) |sellSuper = Sell value of the super version of the item. (integer) <!-- Item Data --> |itemType = Type of item: Crop/Food/Medicine. (plain text string) |seed = Name of the seed that grows this item. Only needed for crops. (plain text string) |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) |energyGainS = Amount of energy the player restores from eating the super vierson of item. (integer) |healthGainS = Amount of health the player restores from eating the super vierson of item. (integer) }}</syntaxhighlight> ==Examples== ===Blueberry Seeds=== {{Seed infobox |name = Blueberry seeds |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} <pre> {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} </pre> {{clear}} <noinclude>[[Category:Template documentation]]</noinclude> b0d8acf800f9197a4dc25ab5520b294a3c913f0e 576 575 2024-05-28T22:39:55Z Geekette828 51691 wikitext text/x-wiki Infobox for consumables in the game. '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Consumable infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Merchant Data --> |sellValue = Sell value of the item. (integer) |sellSuper = Sell value of the super version of the item. (integer) <!-- Item Data --> |itemType = Type of item: Crop/Food/Medicine. (plain text string) |seed = Name of the seed that grows this item. Only needed for crops. (plain text string) |energyGain = Amount of energy the player restores from eating this item. (integer) |healthGain = Amount of health the player restores from eating this item. (integer) |energyGainS = Amount of energy the player restores from eating the super vierson of item. (integer) |healthGainS = Amount of health the player restores from eating the super vierson of item. (integer) }}</syntaxhighlight> ==Examples== ===Blueberries=== {{Consumable infobox |name = Blueberries |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} <pre> {{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} </pre> {{clear}} ===Blueberry Muffin=== {{Consumable infobox |name = Blueberry muffin |sellValue = 135 |sellSuper = <!-- Item Data --> |itemType = Food |energyGain = 75 |healthGain = 38 |energyGainS = |healthGainS = }} <pre> {{Consumable infobox |sellValue = 135 |sellSuper = <!-- Item Data --> |itemType = Food |energyGain = 75 |healthGain = 38 |energyGainS = |healthGainS = }} </pre> {{clear}} <noinclude>[[Category:Template documentation]]</noinclude> 3b1ee3ae9c30c13b667bb664a85182a2ad25b41e Template:Seed infobox/doc 10 446 578 508 2024-05-28T22:42:13Z Geekette828 51691 wikitext text/x-wiki Infobox for seeds in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Seeds table]] - Declares the [[Special:CargoTables/Seeds|seeds cargo table]] *[[Template:Produces table]] - Parses the "produces" data, and stores it in the [[Special:CargoTables/Produces|produces cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Seed infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Merchant Data --> |sellValue = Sell value of the item. (integer) <!-- Item Data --> |planet = Name of the planet the ship must be orbiting to have these seeds show up in the store. (plain text string) |produces = Name of the normal crops that come from this seed. (plain text string, use ";" as a delimiter) <!-- Growth Data --> |growth = Number of days for initial growth. (integer) |maxHarvest = Number of times the player can harvest the crop before reseeding. (integer) |cropYield = Average number of crops per harvest. (integer) }}</syntaxhighlight> ==Examples== ===Blueberry Seeds=== {{Seed infobox |name = Blueberry seeds |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} <pre> {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} </pre> {{clear}} <noinclude>[[Category:Template documentation]]</noinclude> 014f4c23085f681a5544f42bd499615159abb812 580 578 2024-05-28T22:43:32Z Geekette828 51691 wikitext text/x-wiki Infobox for seeds in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *Basic information from this infobox is stored in the [[Special:CargoTables/Items|items cargo table]] *[[Template:Seeds table]] - Declares the [[Special:CargoTables/Seeds|seeds cargo table]] *[[Template:Produces table]] - Parses the "produces" data, and stores it in the [[Special:CargoTables/Produces|produces cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Seed infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Merchant Data --> |sellValue = Sell value of the item. (integer) <!-- Item Data --> |planet = Name of the planet the ship must be orbiting to have these seeds show up in the store. (plain text string) |produces = Name of the normal crops that come from this seed. (plain text string, use ";" as a delimiter) <!-- Growth Data --> |growth = Number of days for initial growth. (integer) |maxHarvest = Number of times the player can harvest the crop before reseeding. (integer) |cropYield = Average number of crops per harvest. (float) }}</syntaxhighlight> ==Examples== ===Blueberry Seeds=== {{Seed infobox |name = Blueberry seeds |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} <pre> {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} </pre> {{clear}} <noinclude>[[Category:Template documentation]]</noinclude> db24b99f8af4d019d65bc2226c4d23c5002a0100 Template:Seeds table 10 438 579 484 2024-05-28T22:42:28Z Geekette828 51691 wikitext text/x-wiki {{#cargo_declare:_table=Seeds |name=String |planet=String |growth=String |maxHarvest=Integer |cropYield=Float }} [[Category:Cargo declaration_templates]] ea53ab9ea67ffee5e5e620369a6b6b305fef4ebb Dark matter fuel 0 385 581 503 2024-05-28T23:11:18Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 827cd5bef993c6dc26f78b9348dcf8f37824c9ba 583 581 2024-05-28T23:13:51Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr}} {{Recipe|produces=Dark matter fuel |machine=Advanced Dark matter refiner |ingredients=Dark matter*10 |time=6hr}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 935bffd0a5855a43adb79e44e4b4238c4e71779f 584 583 2024-05-28T23:14:23Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark matter fuel |machine=Advanced Dark matter refiner |ingredients=Dark matter*10 |time=6hr} |id=2} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 21668ca83d0f87bceba4dda35c7455ed764555e0 585 584 2024-05-28T23:14:50Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark matter fuel |machine=Advanced Dark matter refiner |ingredients=Dark matter*10 |time=6hr |id=2}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== b4e66452d8ae519d5f35268ed9d3946e2f8a7869 586 585 2024-05-28T23:15:12Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark matter fuel |machine=Advanced dark matter refiner |ingredients=Dark matter*10 |time=6hr |id=2}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== fefd799dbf31babed6f29fa35c4142b36913164a File:Dark matter.png 6 444 582 499 2024-05-28T23:13:33Z Geekette828 51691 Geekette828 moved page [[File:Dark Matter.png]] to [[File:Dark matter.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Dark matter 0 491 587 2024-05-28T23:15:57Z Geekette828 51691 Created page with "{{Item infobox |sellValue=1 |sellSuper= |itemType= }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Triv..." wikitext text/x-wiki {{Item infobox |sellValue=1 |sellSuper= |itemType= }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== d94f208a36a34d2b9e416b6ee5cf8eecc86655c4 Template:Item infobox 10 209 588 498 2024-05-28T23:16:48Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Energy Gain = {{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" energy gain -->}} |Sell = {{{sellValue|}}}{{credits}}{{#if:{{{sellSuper|}}}|<br>{{icon|super item|notext=true|size=20}}{{{sellSuper|}}}{{credits}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 17c3f6a6a7f7b97bbff47af2eddd5cae2e5c66d5 File:Background-dark.png 6 492 589 2024-05-28T23:22:04Z Geekette828 51691 Background for the dark theme wikitext text/x-wiki == Summary == Background for the dark theme == Licensing == {{License|game}} 7a55f9ca9c5dae543363119d649e5c5754607528 590 589 2024-05-28T23:22:18Z Geekette828 51691 Protected "[[File:Background-dark.png]]" ([Edit=Allow only administrators] (indefinite)) wikitext text/x-wiki == Summary == Background for the dark theme == Licensing == {{License|game}} 7a55f9ca9c5dae543363119d649e5c5754607528 File:Site-logo.png 6 493 591 2024-05-29T00:35:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad 592 591 2024-05-29T00:35:39Z Geekette828 51691 Protected "[[File:Site-logo.png]]" ([Edit=Allow only administrators] (indefinite)) wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad MediaWiki:Common.css 8 9 593 10 2024-05-29T00:50:32Z Geekette828 51691 css text/css /* CSS placed here will be applied to all skins */ :root, .view-light { --wiki-body-background-image: none; --wiki-body-background-color: #f6f6f6; --wiki-body-background-color--rgb: 246,246,246; --wiki-body-dynamic-color: #000000; --wiki-body-dynamic-color--rgb: 0,0,0; --wiki-body-dynamic-color--inverted: #ffffff; --wiki-body-dynamic-color--inverted--rgb: 255,255,255; --wiki-body-dynamic-color--secondary: #333333; --wiki-body-dynamic-color--secondary--rgb: 51,51,51; --wiki-body-dynamic-color--secondary--inverted: #dddddd; --wiki-body-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #ffffff; --wiki-content-background-color--rgb: 255, 255, 255; --wiki-content-background-opacity: 1; --wiki-content-background-color--secondary: #fbfbfb; --wiki-content-background-color--secondary--rgb: 251, 251, 251; --wiki-content-border-color: #a7d7f9; --wiki-content-border-color--rgb: 167, 215, 249; --wiki-content-text-color: #111111; --wiki-content-text-color--rgb: 17, 17, 17; --wiki-content-link-color: #0645ad; --wiki-content-link-color--rgb: 6, 69, 173; --wiki-content-link-label-color: #ffffff; --wiki-content-link-label-color--rgb: 255,255,255; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #ba0000; --wiki-content-redlink-color--rgb: 186,0,0; --wiki-content-text-mix-color: #8a8b8b; --wiki-content-text-mix-color--rgb: 138,139,139; --wiki-content-text-mix-color-95: #eef0f0; --wiki-content-text-mix-color-95--rgb: 238,240,240; --wiki-content-dynamic-color: #000000; --wiki-content-dynamic-color--rgb: 0,0,0; --wiki-content-dynamic-color--inverted: #ffffff; --wiki-content-dynamic-color--inverted--rgb: 255,255,255; --wiki-content-dynamic-color--secondary: #333333; --wiki-content-dynamic-color--secondary--rgb: 51,51,51; --wiki-content-dynamic-color--secondary--inverted: #dddddd; --wiki-content-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #3366cc; --wiki-accent-color--rgb: 51, 102, 204; --wiki-accent-color--hover: #447ff5; --wiki-accent-color--hover--rgb: 68, 127, 245; --wiki-accent-label-color: #ffffff; --wiki-accent-label-color--rgb: 255, 255, 255; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: 0.0; --wiki-sidebar-border-color: var(--wiki-body-background-color); --wiki-sidebar-border-color--rgb: var(--wiki-body-background-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: #e8f2f8; --wiki-navigation-background-color--secondary--rgb: 232, 242, 248; --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #bf0017; --wiki-alert-color--rgb: 191,0,23; --wiki-alert-label-color: #ffffff; --wiki-alert-label-color--rgb: 255, 255, 255; --wiki-warning-color: #cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #ffffff; --wiki-success-label-color--rgb: 255, 255, 255; --wiki-icon-general-filter: ; --wiki-icon-to-link-filter: invert(20%) sepia(93%) saturate(2141%) hue-rotate(210deg) brightness(83%) contrast(103%); } .view-dark { --wiki-body-background-image:url(https://lkg.wiki.gg/images/0/0c/Background-dark.png); --wiki-body-background-color:#171717; --wiki-body-background-color--rgb:23,23,23; --wiki-body-dynamic-color:#ffffff; --wiki-body-dynamic-color--rgb:255,255,255; --wiki-body-dynamic-color--inverted:#000000; --wiki-body-dynamic-color--inverted--rgb:0,0,0; --wiki-body-dynamic-color--secondary:#dddddd; --wiki-body-dynamic-color--secondary--rgb:221,221,221; --wiki-body-dynamic-color--secondary--inverted:#333333; --wiki-body-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-body-font-family:sans-serif; --wiki-content-background-color:#101221; --wiki-content-background-color--rgb:18,18,33; --wiki-content-background-opacity:1.0; --wiki-content-background-color--secondary:#0d112a; --wiki-content-background-color--secondary--rgb:13,17,42; --wiki-content-border-color:#9a329e; --wiki-content-border-color--rgb:153,26,81; --wiki-content-text-color:#e1fafe; --wiki-content-text-color--rgb:225,250,254; --wiki-content-link-color:#00dcff; --wiki-content-link-color--rgb:109,138,251; --wiki-content-link-label-color:#000; --wiki-content-link-label-color--rgb:0,0,0; --wiki-content-link-color--visited:var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb:var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover:var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb:var(--wiki-content-link-color--rgb); --wiki-content-redlink-color:#FC3B2C; --wiki-content-redlink-color--rgb:252,59,44; --wiki-content-text-mix-color:#868686; --wiki-content-text-mix-color--rgb:134,134,134; --wiki-content-text-mix-color-95:#2a2a2a; --wiki-content-text-mix-color-95--rgb:42,42,42; --wiki-content-dynamic-color:#ffffff; --wiki-content-dynamic-color--rgb:255,255,255; --wiki-content-dynamic-color--inverted:#000000; --wiki-content-dynamic-color--inverted--rgb:0,0,0; --wiki-content-dynamic-color--secondary:#dddddd; --wiki-content-dynamic-color--secondary--rgb:221,221,221; --wiki-content-dynamic-color--secondary--inverted:#333333; --wiki-content-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-heading-color:var(--wiki-content-text-color); --wiki-heading-color--rgb:var(--wiki-content-text-color--rgb); --wiki-heading-font-family:'Linux Libertine','Georgia','Times',serif; --wiki-accent-color:#00dcff; --wiki-accent-color--rgb:255,25,128; --wiki-accent-color--hover:#00dcff; --wiki-accent-color--hover--rgb:216,32,115; --wiki-accent-label-color:#000; --wiki-accent-label-color--rgb:0,0,0; --wiki-accent-link-color:#22214d; --wiki-accent-link-color--rgb:34,33,77; --wiki-sidebar-background-color:var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity:var(--wiki-content-background-opacity); --wiki-sidebar-border-color:var(--wiki-content-border-color); --wiki-sidebar-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-sidebar-link-color:var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb:var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color:var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb:var(--wiki-heading-color--rgb); --wiki-navigation-background-color:var(--wiki-content-border-color); --wiki-navigation-background-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary:var(--wiki-content-background-color--secondary); --wiki-navigation-background-color--secondary--rgb:var(--wiki-content-background-color--secondary--rgb); --wiki-navigation-border-color:var(--wiki-content-border-color); --wiki-navigation-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-text-color:var(--wiki-content-link-color); --wiki-navigation-text-color--rgb:var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color:var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color:var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb:var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color:var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb:var(--wiki-content-text-color--rgb); --wiki-alert-color:#ce0018; --wiki-alert-color--rgb:206,0,24; --wiki-alert-label-color:#000000; --wiki-alert-label-color--rgb:0,0,0; --wiki-warning-color:#cf721c; --wiki-warning-color--rgb:207,114,28; --wiki-warning-label-color:#000000; --wiki-warning-label-color--rgb:0,0,0; --wiki-success-color:#0c742f; --wiki-success-color--rgb:12,116,47; --wiki-success-label-color:#000000; --wiki-success-label-color--rgb:0,0,0; --wiki-icon-general-filter:invert(100%); --wiki-icon-to-link-filter:invert(60%) sepia(70%) saturate(3715%) hue-rotate(206deg) brightness(101%) contrast(97%); } /***************************** * PortableInfoboxes * ******************************/ :root { --pi-background: var(--wiki-content-background-color); --pi-secondary-background: var(--wiki-accent-color); --pi-secondary-background--rgb: var(--wiki-accent-color--rgb); --pi-secondary-background-label: var(--wiki-accent-label-color); --pi-border-color: rgba(var(--pi-secondary-background--rgb),0.5); } .portable-infobox .pi-title, .portable-infobox .pi-header { text-align:center; font-size:1.5em; background:rgba(var(--pi-secondary-background--rgb), 0.75); color:var(--pi-secondary-background-label); } .portable-infobox .pi-data { background:rgba(var(--pi-secondary-background--rgb), 0.18); } .portable-infobox .pi-image { padding: 8px; } .pi-image-thumbnail { max-width:100%; } .pi-section-navigation .pi-section-tab.pi-section-active, .pi-section-navigation .pi-section-tab.current, .pi-media-collection .pi-tab-link.current { background: var(--pi-secondary-background); color: var(--pi-secondary-background-label); } /* overqualify these to overwrite normal content heading styles */ .mw-body .portable-infobox h2, .mw-body .portable-infobox h3 { border-bottom: 0; font-family: inherit; font-weight: 700; margin: 0; } /***************************** * End PortableInfoboxes * ******************************/ /********************************************************************************************************************* * Semantically-correct horizontal lists (for Module:Navbox, and they're more machine-readable than {{*}}-formatting) * **********************************************************************************************************************/ .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } /* Display list items inline */ .hlist dd, .hlist dt, .hlist li { /* * don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again * We also want to reset margin-right in Minerva */ margin: 0; display: inline; } /* Display requested top-level lists inline */ .hlist.inline, .hlist.inline dl, .hlist.inline ol, .hlist.inline ul, /* Display nested lists inline */ .hlist dl dl, .hlist dl ol, .hlist dl ul, .hlist ol dl, .hlist ol ol, .hlist ol ul, .hlist ul dl, .hlist ul ol, .hlist ul ul { display: inline; } /* Hide empty list items */ .hlist .mw-empty-li { display: none; } /* TODO: :not() can maybe be used here to remove the later rule. naive test * seems to work. more testing needed. like so: */ .hlist dt:not(:last-child)::after { content: ": "; } .hlist dd:not(:last-child)::after, .hlist li:not(:last-child)::after { content: " · "; font-weight: bold; } /* Add parentheses around nested lists */ .hlist dd dd:first-child::before, .hlist dd dt:first-child::before, .hlist dd li:first-child::before, .hlist dt dd:first-child::before, .hlist dt dt:first-child::before, .hlist dt li:first-child::before, .hlist li dd:first-child::before, .hlist li dt:first-child::before, .hlist li li:first-child::before { content: " ("; font-weight: normal; } .hlist dd dd:last-child::after, .hlist dd dt:last-child::after, .hlist dd li:last-child::after, .hlist dt dd:last-child::after, .hlist dt dt:last-child::after, .hlist dt li:last-child::after, .hlist li dd:last-child::after, .hlist li dt:last-child::after, .hlist li li:last-child::after { content: ")"; font-weight: normal; } /* Put ordinals in front of ordered list items */ .hlist ol { counter-reset: listitem; } .hlist ol > li { counter-increment: listitem; } .hlist ol > li::before { content: " " counter(listitem) "\a0"; } .hlist dd ol > li:first-child::before, .hlist dt ol > li:first-child::before, .hlist li ol > li:first-child::before { content: " (" counter(listitem) "\a0"; } /******************************************** * End semantically-correct horizontal lists * *********************************************/ /********************************************************** * Template:Navbox (needs semantic horizontal lists above) * ***********************************************************/ .navbox { clear: both; margin: 1em 0; padding: 3px; font-size: 90%; width: 100%; border: 1px solid var(--wiki-content-border-color); box-sizing: border-box; } .navbox-inner, .navbox-subgroup { border-spacing: 0; width: 100%; } /* Reduce spacing between adjacent navboxes */ .navbox + .navbox { margin-top: -1px; } /* Spacing between rows */ .navbox-spacer { height: 2px; } /* Title bars and labels */ .navbox-title { font-weight: bold; font-size: 115%; padding: 0.25em 0.6em; line-height: 1.5em; color: var(--wiki-accent-label-color); background: var(--wiki-accent-color); } .navbox-title, .navbox-abovebelow { padding-left: 1em; padding-right: 1em; text-align: center; } .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: rgba(var(--wiki-accent-color--rgb), 0.18); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .navbox .navbox-title a, .navbox .navbox-title a:visited, .navbox .navbox-title a.external, .navbox .navbox-title a.external:visited { color: var(--wiki-accent-link-color); } .navbox-title .mw-collapsible-toggle { font-weight: normal; text-align: right; } .navbox-title-text { font-size: 105%; } /* Navbox-related links */ .navbox-title .navbar { float: left; margin-right: 0.5em; } .navbox-title .navbar a.external::after { content: unset; } /* Groups */ .navbox-group { font-weight: bold; padding: 0 0.5em; white-space: nowrap; text-align: center; } /* Zebra colouring for rows */ .navbox-even { background: #fff1; } /* Subgroups: equal group labels between different child navboxes */ .navbox-subgroup > tbody > tr { display: flex; } .navbox-subgroup .navbox-title { width: 100%; } .navbox-subgroup .navbox-group { display: flex; align-items: center; justify-content: center; flex-basis: 11em; flex-grow: 1; flex-shrink: 0; white-space: normal; } /* Lists */ .navbox-list { width: 100%; } /* Mobile adjustments */ @media screen and (max-width: 1280px) { .mw-body .navbox-inner table { display: table; } } @media screen and (max-width: 720px) { .mw-body .navbox { display: none; } } /********************** * End Template:Navbox * ***********************/ /******************* * Main page layout * ********************/ #mp-box-welcome {grid-area: welcome;} #mp-box-about {grid-area: about;} #mp-box-links {grid-area: links;} #mp-box-contribute {grid-area: contribute;} #mp-box-featured {grid-area: featured;} #mp-box-basics {grid-area: basics;} #mp-box-gallery {grid-area: gallery;} #mp-box-iconlists {grid-area: iconlists;} /* Example Main Page 1 Grid Layout */ #mp-layout1-container { display:grid; grid-template-areas: "welcome" "about" "featured" "basics" "gallery" "links" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout1-container { grid-template-areas: "welcome welcome" "about about" "featured basics" "gallery links" "contribute contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout1-container { grid-template-areas: "welcome welcome welcome" "about about basics" "featured featured basics" "gallery links links" "contribute contribute contribute"; grid-template-columns: 2fr 1fr 2fr; } } /* Example Main Page 2 Grid Layout */ #mp-layout2-container { display:grid; grid-template-areas: "welcome" "links" "about" "gallery" "iconlists" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout2-container { grid-template-areas: "welcome links" "gallery about" "iconlists about" "iconlists contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout2-container { grid-template-areas: "welcome welcome links" "welcome welcome about" "gallery gallery about" "iconlists iconlists contribute"; grid-template-columns: 3fr 2fr 2fr; } } /* Example Main Page 3 Grid Layout */ #mp-layout3-container { display:grid; grid-template-areas: "welcome" "about" "featured" "four" "priority" "projects" "wiki"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout3-container { grid-template-areas: "welcome welcome" "about about" "featured four" "priority projects" "wiki wiki"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout3-container { grid-template-areas: "welcome welcome welcome" "about about four" "featured featured four" "priority projects projects" "wiki wiki wiki"; grid-template-columns:2fr 1fr 2fr; } } .mp-box { display:flex; flex-flow:column nowrap; width: calc(100% - 2px); box-sizing: border-box; background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.25); border:1px solid var(--wiki-content-border-color); padding:0px; } .mp-body { height: 100%; display: flex; padding:0.5em; flex-flow: column nowrap; } .mp-box.centered-content .mp-body { height: 100%; display: flex; flex-flow: column nowrap; justify-content: space-evenly; } .mp-box.has-floating-image { display:block; } .mp-box.has-floating-image .mp-body { height:unset; display:block; } .mp-box h2 { text-align:center; font-weight:bold; font-family:var(--wiki-heading-font-family); overflow: initial; border-bottom: 1px solid var(--wiki-content-border-color); font-size: 150%; margin: 0; padding: 5px 0; color:var(--wiki-heading-color); } .mp-box .welcome-message { font-size: 200%; margin: 0; padding: 5px 0; color: #fff; filter: drop-shadow(0px 2px 3px #000); } #mp-banner-container { position: relative; } #mp-box-welcome { text-align:center; position:relative; overflow:hidden; } #mp-welcome { position: relative; height: 100%; font-family: var(--wiki-heading-font-family); z-index: 2; box-sizing: border-box; } #mp-welcome .welcome-subtitle { height: 100%; background:rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); padding:0.5em; } #mp-banner { position: absolute; top: 48px; width: 100%; height: 100%; filter: blur(5px); z-index: -1; background: url(/images/e/e0/MP_banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: top center; } .view-dark #mp-banner { filter: blur(5px) brightness(50%); } .view-light #mp-banner { filter: blur(5px) contrast(50%); } /* [[Template:MP_link]] */ .mp-links { --gap:10px; } .mp-links > ul { display: flex; flex-flow: row wrap; justify-content: space-evenly; margin: 2px; gap:var(--gap); } .mp-links > ul > li { display:flex; flex-flow:column nowrap; align-items:stretch; text-align: center; box-sizing:border-box; flex: max(calc(50% - var(--gap)), 5em) 1 1; outline:1px solid var(--wiki-content-link-color); transition:0.1s ease-in; } .mp-links > ul > li:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); } .mp-links.columns-1 > ul > li {flex: max(calc(100% - var(--gap)), 5em) 1 1;} .mp-links.columns-2 > ul > li {flex: max(calc(50% - var(--gap)), 5em) 1 1;} .mp-links.columns-3 > ul > li {flex: max(calc((100% / 3) - var(--gap)), 5em) 1 1;} .mp-links.columns-4 > ul > li {flex: max(calc(25% - var(--gap)), 5em) 1 1;} .mp-links.columns-5 > ul > li {flex: max(calc(20% - var(--gap)), 5em) 1 1;} .mp-links.columns-6 > ul > li {flex: max(calc((100% / 6) - var(--gap)), 5em) 1 1;} .mp-links.columns-7 > ul > li {flex: max(calc((100% / 7) - var(--gap)), 5em) 1 1;} .mp-links > ul > li:hover a { text-decoration: underline; } .mp-links > ul > li > a { display: flex; align-items: center; justify-content: center; height:100%; flex:1 1 auto; box-sizing:border-box; padding:5px; } .mp-links > ul > li > a:first-child { height:100%; } .mp-links > ul > li > a:last-child:not(:first-child) { height:unset; } .mp-links.stretch, .mp-links.stretch > ul { height:100%; } .mp-links.side-image li { flex-flow:row nowrap; } /* MP icon lists */ .mp-iconlists { display: flex; flex-flow: wrap; gap: 5px 20px; } .mp-iconlists > .mp-iconlist { flex: 1; min-width: fit-content; } .mp-iconlist > h3 { padding: 0; margin: 0; } .mp-iconlist > ul { list-style: none; margin: 0; } /* MP gallery */ .mp-box ul.gallery { display: flex; flex-flow: wrap; gap: 5px 10px; align-items: flex-end; justify-content: space-evenly; margin: 0; } .mp-box ul.gallery .gallerytext { margin-top: 1em; background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: inset 0 0 20px 2px #000; text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000; } /*********************** * End main page layout * ************************/ /*********************** * Start DRUID infoboxes * ************************/ .druid-container { /* These variables are designed to inherit from your wiki's color variables. If your wiki uses a different naming scheme, change the inner names to match yours. If your wiki doesn't use color variables you should consider doing so, otherwise you can replace the inner variables or the fallback values with colors that match your wiki. */ --druid-background-color: var(--wiki-content-background-color, #ffffff); --druid-background-color--rgb: var(--wiki-content-background-color--rgb, 255, 255, 255); --druid-secondary-background-color: var(--wiki-accent-color, #36c); --druid-secondary-background-color--rgb: var(--wiki-accent-color--rgb, 51, 102, 204); --druid-secondary-background-label-color: var(--wiki-accent-label-color, #fff); --druid-secondary-background-label-color--rgb: var(--wiki-accent-label-color--rgb, 255, 255, 255); --druid-tertiary-background-color: var(--wiki-content-background-color--secondary, #eaecf0); --druid-tertiary-background-color--rgb: var(--wiki-content-background-color--secondary--rgb, 234, 236, 240); --druid-border-color: var(--wiki-content-border-color, #a7d7f9); --druid-border-color--rgb: var(--wiki-content-border-color--rgb, 167, 215, 249); --druid-link-color: var(--wiki-content-link-color, #0645ad); --druid-link-color--rgb: var(--wiki-content-link-color--rgb, 6, 69, 173); --druid-link-label-color: var(--wiki-content-link-label-color, #fff); --druid-link-label-color--rgb: var(--wiki-content-link-label-color--rgb, 255, 255, 255); } .druid-container { border: 4px solid var(--druid-border-color); border-radius: 3px; background: var(--druid-background-color); float: right; clear: right; margin: 0 0 1em 1em; width: 16.875em; box-sizing: border-box; border-collapse: collapse; } div.druid-container { width: 22em; } @media screen and (max-width: 450px) { .druid-container { width:100%; } } @media screen and (max-width: 720px) { .druid-container { float: none; margin: 0.5rem auto; } } .druid-main-images-file, .druid-main-image { text-align:center; } .druid-infobox .druid-title, .druid-infobox .druid-section { background:var(--druid-secondary-background-color); color:var(--druid-secondary-background-label-color); text-align:center; font-size:1.5em; padding:1px; } .druid-section { font-size: 1.25em; font-weight: 500; } .druid-label { font-weight:bold; text-align: right; box-sizing: border-box; } .druid-row > .druid-label { width: 48%; } .druid-row > .druid-label, .druid-row > .druid-data { padding-inline: 0.3em; } .druid-main-image, .druid-main-images { padding:5px; } .druid-main-image img, .druid-main-images img { max-width:100%; height:auto; } .druid-main-images-labels { display:flex; flex-direction:row; flex-wrap:wrap; justify-content: space-evenly; margin:0.25em; gap:0.25em; } .druid-main-images-label { cursor:pointer; flex:1 1 auto; text-align:center; transition:.1s ease-in; outline:1px solid var(--druid-link-color); } .druid-main-images-label.focused { background:var(--druid-link-color); color:var(--druid-link-label-color); } .druid-main-images-label:not(.focused):hover { background:rgba(var(--druid-link-color--rgb), 0.25); } .druid-toggleable-data:not(.focused), .druid-main-images-file:not(.focused), .druid-toggleable-heading:not(.focused) { display:none; } .druid-row:not(:has(.druid-grid)):has(.druid-toggleable-data-empty.focused) { display:none; } .druid-section:has(.druid-toggleable-heading-empty.focused) { display:none; } .druid-grid { display:grid; gap: 0.3em; padding: 0.35em; } .druid-grid-item { background:var(--druid-tertiary-background-color); padding:0.25em; border:1px solid rgba(var(--druid-border-color--rgb), 0.5); border-radius: 2px; } .druid-grid-item > .druid-label, .druid-grid-item > .druid-data { text-align: center; } .druid-collapsed { display:none; } .druid-collapsible { cursor:pointer; position:relative; } .druid-collapsible::after { content:'–'; display:block; position:absolute; right:10px; font-size:20px; font-weight:bold; color:var(--druid-secondary-background-label-color); } .druid-collapsible-collapsed::after { content:'+'; } .druid-section-container:has(.druid-toggleable-data-empty.focused):not(:has(.druid-toggleable-data-nonempty.focused)):not(:has(.druid-data-nonempty)) { display: none; } /***************************************** Div support *****************************************/ div.druid-row { display:flex; margin-block: 1px; } div.druid-row + div.druid-row { margin-top: 0; } div.druid-row > .druid-label { background: var(--druid-tertiary-background-color); } .druid-infobox .druid-title { font-weight: 700; } .druid-infobox #toc { display:none; } /*********************** * End DRUID infoboxes * ************************/ /*** Miscellaneous ***/ .responsive-image { max-width:100%; height:auto; } .view-dark .invert-on-dark, .view-light .invert-on-light { filter:invert(100%); } @media screen and (min-width:720px) { .mobileonly { display:none; } } @media screen and (max-width:720px) { .nomobile { display:none; } } /************************** * Start Modular Templates * **************************/ /********* [[Template:Ambox]] *********/ .ambox { border: 1px solid var(--wiki-content-border-color); border-left: 10px solid var(--ambox-color); border-radius: 2px; display: flex; align-items: center; gap: .6em; margin: 1em 0; padding: 3px .6em; background-color: var(--wiki-content-background-color--secondary); box-shadow: 2px 2px 5px 0px #0002; } @media (min-width: 720px) { .ambox { margin-inline: 10%; } } .ambox.tiny { padding: .04rem .5em; margin-inline: 0; width: fit-content; } .ambox + .ambox { margin-top: -.6em; } .ambox-content p { margin: .15em 0; } .ambox-title { font-weight: bold; } /********* [[Template:Hatnote]] *********/ .hatnote { padding: 1px 0 1px 1.6em; margin-bottom: 0.5em; font-style: italic; border-top: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); border-bottom: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); } .hatnote.icon { padding-left: 0; } /********* [[Template:Spoiler]] *********/ .spoiler-content { background-color: rgb(127, 127, 127); transition: all 0.3s; cursor: pointer; } .spoiler-content > span { opacity: 0; transition: all 0.3s; } .spoiler-content > * { pointer-events:none; } .spoiler-content.show > * { pointer-events:unset; } .spoiler-content.show { background-color: rgba(127, 127, 127, 0); } .spoiler-content.show > span { opacity: 1; } /********* [[Template:Link icon]] *********/ .link-icon { display: inline-flex; align-items: center; height: var(--link-icon-line-height); vertical-align: bottom; } .link-icon .regular { align-self: center; } .link-icon .regular a { display: flex; } .link-icon .regular img { height: var(--link-icon-size); max-width: var(--link-icon-size); } .link-icon .fallback { outline: 1px solid var(--wiki-content-text-color); border-radius: 50%; text-align: center; width: var(--link-icon-size); line-height: var(--link-icon-size); } .link-icon.notext .fallback { display: inline-block; } .link-icon.notext { display: inline; } /********* [[Template:Quote]] *********/ .quote { background: var(--wiki-content-background-color--secondary); border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: .5em 0; padding: .5em; } .quote .block { display: block; } .quote .title { font-size: large; font-weight: bold; } .quote .content { font-style: italic; } .quote .author { font-weight: bold; text-align: end; } .quote .marks-wrapper { display: flex; gap: 5px; } .quote .marks-wrapper::before, .quote .marks-wrapper::after { font-size: 100px; line-height: 0px; } .quote .marks-wrapper::before { content: "“"; margin-top: 40px; } .quote .marks-wrapper::after { content: "”"; align-self: end; margin-bottom: -10px; } /************************ * End Modular Templates * *************************/ 32a4b32682fd1421d94248fc2ef348b3d29d7d2f 594 593 2024-05-29T00:52:12Z Geekette828 51691 css text/css /* CSS placed here will be applied to all skins */ :root, .view-light { --wiki-body-background-image: none; --wiki-body-background-color: #f6f6f6; --wiki-body-background-color--rgb: 246,246,246; --wiki-body-dynamic-color: #000000; --wiki-body-dynamic-color--rgb: 0,0,0; --wiki-body-dynamic-color--inverted: #ffffff; --wiki-body-dynamic-color--inverted--rgb: 255,255,255; --wiki-body-dynamic-color--secondary: #333333; --wiki-body-dynamic-color--secondary--rgb: 51,51,51; --wiki-body-dynamic-color--secondary--inverted: #dddddd; --wiki-body-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #ffffff; --wiki-content-background-color--rgb: 255, 255, 255; --wiki-content-background-opacity: 1; --wiki-content-background-color--secondary: #fbfbfb; --wiki-content-background-color--secondary--rgb: 251, 251, 251; --wiki-content-border-color: #a7d7f9; --wiki-content-border-color--rgb: 167, 215, 249; --wiki-content-text-color: #111111; --wiki-content-text-color--rgb: 17, 17, 17; --wiki-content-link-color: #0645ad; --wiki-content-link-color--rgb: 6, 69, 173; --wiki-content-link-label-color: #ffffff; --wiki-content-link-label-color--rgb: 255,255,255; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #ba0000; --wiki-content-redlink-color--rgb: 186,0,0; --wiki-content-text-mix-color: #8a8b8b; --wiki-content-text-mix-color--rgb: 138,139,139; --wiki-content-text-mix-color-95: #eef0f0; --wiki-content-text-mix-color-95--rgb: 238,240,240; --wiki-content-dynamic-color: #000000; --wiki-content-dynamic-color--rgb: 0,0,0; --wiki-content-dynamic-color--inverted: #ffffff; --wiki-content-dynamic-color--inverted--rgb: 255,255,255; --wiki-content-dynamic-color--secondary: #333333; --wiki-content-dynamic-color--secondary--rgb: 51,51,51; --wiki-content-dynamic-color--secondary--inverted: #dddddd; --wiki-content-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #3366cc; --wiki-accent-color--rgb: 51, 102, 204; --wiki-accent-color--hover: #447ff5; --wiki-accent-color--hover--rgb: 68, 127, 245; --wiki-accent-label-color: #ffffff; --wiki-accent-label-color--rgb: 255, 255, 255; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: 0.0; --wiki-sidebar-border-color: var(--wiki-body-background-color); --wiki-sidebar-border-color--rgb: var(--wiki-body-background-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: #e8f2f8; --wiki-navigation-background-color--secondary--rgb: 232, 242, 248; --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #bf0017; --wiki-alert-color--rgb: 191,0,23; --wiki-alert-label-color: #ffffff; --wiki-alert-label-color--rgb: 255, 255, 255; --wiki-warning-color: #cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #ffffff; --wiki-success-label-color--rgb: 255, 255, 255; --wiki-icon-general-filter: ; --wiki-icon-to-link-filter: invert(20%) sepia(93%) saturate(2141%) hue-rotate(210deg) brightness(83%) contrast(103%); } .view-dark { --wiki-body-background-image:url(https://lkg.wiki.gg/images/0/0c/Background-dark.png); --wiki-body-background-color:#171717; --wiki-body-background-color--rgb:23,23,23; --wiki-body-dynamic-color:#ffffff; --wiki-body-dynamic-color--rgb:255,255,255; --wiki-body-dynamic-color--inverted:#000000; --wiki-body-dynamic-color--inverted--rgb:0,0,0; --wiki-body-dynamic-color--secondary:#dddddd; --wiki-body-dynamic-color--secondary--rgb:221,221,221; --wiki-body-dynamic-color--secondary--inverted:#333333; --wiki-body-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-body-font-family:sans-serif; --wiki-content-background-color:#101221; --wiki-content-background-color--rgb:18,18,33; --wiki-content-background-opacity:1.0; --wiki-content-background-color--secondary:#0d112a; --wiki-content-background-color--secondary--rgb:13,17,42; --wiki-content-border-color:#9a329e; --wiki-content-border-color--rgb:153,26,81; --wiki-content-text-color:#e1fafe; --wiki-content-text-color--rgb:225,250,254; --wiki-content-link-color:#00dcff; --wiki-content-link-color--rgb:109,138,251; --wiki-content-link-label-color:#000; --wiki-content-link-label-color--rgb:0,0,0; --wiki-content-link-color--visited:var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb:var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover:var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb:var(--wiki-content-link-color--rgb); --wiki-content-redlink-color:#FC3B2C; --wiki-content-redlink-color--rgb:252,59,44; --wiki-content-text-mix-color:#868686; --wiki-content-text-mix-color--rgb:134,134,134; --wiki-content-text-mix-color-95:#2a2a2a; --wiki-content-text-mix-color-95--rgb:42,42,42; --wiki-content-dynamic-color:#ffffff; --wiki-content-dynamic-color--rgb:255,255,255; --wiki-content-dynamic-color--inverted:#000000; --wiki-content-dynamic-color--inverted--rgb:0,0,0; --wiki-content-dynamic-color--secondary:#dddddd; --wiki-content-dynamic-color--secondary--rgb:221,221,221; --wiki-content-dynamic-color--secondary--inverted:#333333; --wiki-content-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-heading-color:var(--wiki-content-text-color); --wiki-heading-color--rgb:var(--wiki-content-text-color--rgb); --wiki-heading-font-family:'Linux Libertine','Georgia','Times',serif; --wiki-accent-color:#f16cff; --wiki-accent-color--rgb:255,25,128; --wiki-accent-color--hover:#00dcff; --wiki-accent-color--hover--rgb:216,32,115; --wiki-accent-label-color:#000; --wiki-accent-label-color--rgb:0,0,0; --wiki-accent-link-color:#22214d; --wiki-accent-link-color--rgb:34,33,77; --wiki-sidebar-background-color:var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity:var(--wiki-content-background-opacity); --wiki-sidebar-border-color:var(--wiki-content-border-color); --wiki-sidebar-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-sidebar-link-color:var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb:var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color:var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb:var(--wiki-heading-color--rgb); --wiki-navigation-background-color:var(--wiki-content-border-color); --wiki-navigation-background-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary:var(--wiki-content-background-color--secondary); --wiki-navigation-background-color--secondary--rgb:var(--wiki-content-background-color--secondary--rgb); --wiki-navigation-border-color:var(--wiki-content-border-color); --wiki-navigation-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-text-color:var(--wiki-content-link-color); --wiki-navigation-text-color--rgb:var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color:var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color:var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb:var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color:var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb:var(--wiki-content-text-color--rgb); --wiki-alert-color:#ce0018; --wiki-alert-color--rgb:206,0,24; --wiki-alert-label-color:#000000; --wiki-alert-label-color--rgb:0,0,0; --wiki-warning-color:#cf721c; --wiki-warning-color--rgb:207,114,28; --wiki-warning-label-color:#000000; --wiki-warning-label-color--rgb:0,0,0; --wiki-success-color:#0c742f; --wiki-success-color--rgb:12,116,47; --wiki-success-label-color:#000000; --wiki-success-label-color--rgb:0,0,0; --wiki-icon-general-filter:invert(100%); --wiki-icon-to-link-filter:invert(60%) sepia(70%) saturate(3715%) hue-rotate(206deg) brightness(101%) contrast(97%); } /***************************** * PortableInfoboxes * ******************************/ :root { --pi-background: var(--wiki-content-background-color); --pi-secondary-background: var(--wiki-accent-color); --pi-secondary-background--rgb: var(--wiki-accent-color--rgb); --pi-secondary-background-label: var(--wiki-accent-label-color); --pi-border-color: rgba(var(--pi-secondary-background--rgb),0.5); } .portable-infobox .pi-title, .portable-infobox .pi-header { text-align:center; font-size:1.5em; background:rgba(var(--pi-secondary-background--rgb), 0.75); color:var(--pi-secondary-background-label); } .portable-infobox .pi-data { background:rgba(var(--pi-secondary-background--rgb), 0.18); } .portable-infobox .pi-image { padding: 8px; } .pi-image-thumbnail { max-width:100%; } .pi-section-navigation .pi-section-tab.pi-section-active, .pi-section-navigation .pi-section-tab.current, .pi-media-collection .pi-tab-link.current { background: var(--pi-secondary-background); color: var(--pi-secondary-background-label); } /* overqualify these to overwrite normal content heading styles */ .mw-body .portable-infobox h2, .mw-body .portable-infobox h3 { border-bottom: 0; font-family: inherit; font-weight: 700; margin: 0; } /***************************** * End PortableInfoboxes * ******************************/ /********************************************************************************************************************* * Semantically-correct horizontal lists (for Module:Navbox, and they're more machine-readable than {{*}}-formatting) * **********************************************************************************************************************/ .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } /* Display list items inline */ .hlist dd, .hlist dt, .hlist li { /* * don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again * We also want to reset margin-right in Minerva */ margin: 0; display: inline; } /* Display requested top-level lists inline */ .hlist.inline, .hlist.inline dl, .hlist.inline ol, .hlist.inline ul, /* Display nested lists inline */ .hlist dl dl, .hlist dl ol, .hlist dl ul, .hlist ol dl, .hlist ol ol, .hlist ol ul, .hlist ul dl, .hlist ul ol, .hlist ul ul { display: inline; } /* Hide empty list items */ .hlist .mw-empty-li { display: none; } /* TODO: :not() can maybe be used here to remove the later rule. naive test * seems to work. more testing needed. like so: */ .hlist dt:not(:last-child)::after { content: ": "; } .hlist dd:not(:last-child)::after, .hlist li:not(:last-child)::after { content: " · "; font-weight: bold; } /* Add parentheses around nested lists */ .hlist dd dd:first-child::before, .hlist dd dt:first-child::before, .hlist dd li:first-child::before, .hlist dt dd:first-child::before, .hlist dt dt:first-child::before, .hlist dt li:first-child::before, .hlist li dd:first-child::before, .hlist li dt:first-child::before, .hlist li li:first-child::before { content: " ("; font-weight: normal; } .hlist dd dd:last-child::after, .hlist dd dt:last-child::after, .hlist dd li:last-child::after, .hlist dt dd:last-child::after, .hlist dt dt:last-child::after, .hlist dt li:last-child::after, .hlist li dd:last-child::after, .hlist li dt:last-child::after, .hlist li li:last-child::after { content: ")"; font-weight: normal; } /* Put ordinals in front of ordered list items */ .hlist ol { counter-reset: listitem; } .hlist ol > li { counter-increment: listitem; } .hlist ol > li::before { content: " " counter(listitem) "\a0"; } .hlist dd ol > li:first-child::before, .hlist dt ol > li:first-child::before, .hlist li ol > li:first-child::before { content: " (" counter(listitem) "\a0"; } /******************************************** * End semantically-correct horizontal lists * *********************************************/ /********************************************************** * Template:Navbox (needs semantic horizontal lists above) * ***********************************************************/ .navbox { clear: both; margin: 1em 0; padding: 3px; font-size: 90%; width: 100%; border: 1px solid var(--wiki-content-border-color); box-sizing: border-box; } .navbox-inner, .navbox-subgroup { border-spacing: 0; width: 100%; } /* Reduce spacing between adjacent navboxes */ .navbox + .navbox { margin-top: -1px; } /* Spacing between rows */ .navbox-spacer { height: 2px; } /* Title bars and labels */ .navbox-title { font-weight: bold; font-size: 115%; padding: 0.25em 0.6em; line-height: 1.5em; color: var(--wiki-accent-label-color); background: var(--wiki-accent-color); } .navbox-title, .navbox-abovebelow { padding-left: 1em; padding-right: 1em; text-align: center; } .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: rgba(var(--wiki-accent-color--rgb), 0.18); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .navbox .navbox-title a, .navbox .navbox-title a:visited, .navbox .navbox-title a.external, .navbox .navbox-title a.external:visited { color: var(--wiki-accent-link-color); } .navbox-title .mw-collapsible-toggle { font-weight: normal; text-align: right; } .navbox-title-text { font-size: 105%; } /* Navbox-related links */ .navbox-title .navbar { float: left; margin-right: 0.5em; } .navbox-title .navbar a.external::after { content: unset; } /* Groups */ .navbox-group { font-weight: bold; padding: 0 0.5em; white-space: nowrap; text-align: center; } /* Zebra colouring for rows */ .navbox-even { background: #fff1; } /* Subgroups: equal group labels between different child navboxes */ .navbox-subgroup > tbody > tr { display: flex; } .navbox-subgroup .navbox-title { width: 100%; } .navbox-subgroup .navbox-group { display: flex; align-items: center; justify-content: center; flex-basis: 11em; flex-grow: 1; flex-shrink: 0; white-space: normal; } /* Lists */ .navbox-list { width: 100%; } /* Mobile adjustments */ @media screen and (max-width: 1280px) { .mw-body .navbox-inner table { display: table; } } @media screen and (max-width: 720px) { .mw-body .navbox { display: none; } } /********************** * End Template:Navbox * ***********************/ /******************* * Main page layout * ********************/ #mp-box-welcome {grid-area: welcome;} #mp-box-about {grid-area: about;} #mp-box-links {grid-area: links;} #mp-box-contribute {grid-area: contribute;} #mp-box-featured {grid-area: featured;} #mp-box-basics {grid-area: basics;} #mp-box-gallery {grid-area: gallery;} #mp-box-iconlists {grid-area: iconlists;} /* Example Main Page 1 Grid Layout */ #mp-layout1-container { display:grid; grid-template-areas: "welcome" "about" "featured" "basics" "gallery" "links" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout1-container { grid-template-areas: "welcome welcome" "about about" "featured basics" "gallery links" "contribute contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout1-container { grid-template-areas: "welcome welcome welcome" "about about basics" "featured featured basics" "gallery links links" "contribute contribute contribute"; grid-template-columns: 2fr 1fr 2fr; } } /* Example Main Page 2 Grid Layout */ #mp-layout2-container { display:grid; grid-template-areas: "welcome" "links" "about" "gallery" "iconlists" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout2-container { grid-template-areas: "welcome links" "gallery about" "iconlists about" "iconlists contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout2-container { grid-template-areas: "welcome welcome links" "welcome welcome about" "gallery gallery about" "iconlists iconlists contribute"; grid-template-columns: 3fr 2fr 2fr; } } /* Example Main Page 3 Grid Layout */ #mp-layout3-container { display:grid; grid-template-areas: "welcome" "about" "featured" "four" "priority" "projects" "wiki"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout3-container { grid-template-areas: "welcome welcome" "about about" "featured four" "priority projects" "wiki wiki"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout3-container { grid-template-areas: "welcome welcome welcome" "about about four" "featured featured four" "priority projects projects" "wiki wiki wiki"; grid-template-columns:2fr 1fr 2fr; } } .mp-box { display:flex; flex-flow:column nowrap; width: calc(100% - 2px); box-sizing: border-box; background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.25); border:1px solid var(--wiki-content-border-color); padding:0px; } .mp-body { height: 100%; display: flex; padding:0.5em; flex-flow: column nowrap; } .mp-box.centered-content .mp-body { height: 100%; display: flex; flex-flow: column nowrap; justify-content: space-evenly; } .mp-box.has-floating-image { display:block; } .mp-box.has-floating-image .mp-body { height:unset; display:block; } .mp-box h2 { text-align:center; font-weight:bold; font-family:var(--wiki-heading-font-family); overflow: initial; border-bottom: 1px solid var(--wiki-content-border-color); font-size: 150%; margin: 0; padding: 5px 0; color:var(--wiki-heading-color); } .mp-box .welcome-message { font-size: 200%; margin: 0; padding: 5px 0; color: #fff; filter: drop-shadow(0px 2px 3px #000); } #mp-banner-container { position: relative; } #mp-box-welcome { text-align:center; position:relative; overflow:hidden; } #mp-welcome { position: relative; height: 100%; font-family: var(--wiki-heading-font-family); z-index: 2; box-sizing: border-box; } #mp-welcome .welcome-subtitle { height: 100%; background:rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); padding:0.5em; } #mp-banner { position: absolute; top: 48px; width: 100%; height: 100%; filter: blur(5px); z-index: -1; background: url(/images/e/e0/MP_banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: top center; } .view-dark #mp-banner { filter: blur(5px) brightness(50%); } .view-light #mp-banner { filter: blur(5px) contrast(50%); } /* [[Template:MP_link]] */ .mp-links { --gap:10px; } .mp-links > ul { display: flex; flex-flow: row wrap; justify-content: space-evenly; margin: 2px; gap:var(--gap); } .mp-links > ul > li { display:flex; flex-flow:column nowrap; align-items:stretch; text-align: center; box-sizing:border-box; flex: max(calc(50% - var(--gap)), 5em) 1 1; outline:1px solid var(--wiki-content-link-color); transition:0.1s ease-in; } .mp-links > ul > li:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); } .mp-links.columns-1 > ul > li {flex: max(calc(100% - var(--gap)), 5em) 1 1;} .mp-links.columns-2 > ul > li {flex: max(calc(50% - var(--gap)), 5em) 1 1;} .mp-links.columns-3 > ul > li {flex: max(calc((100% / 3) - var(--gap)), 5em) 1 1;} .mp-links.columns-4 > ul > li {flex: max(calc(25% - var(--gap)), 5em) 1 1;} .mp-links.columns-5 > ul > li {flex: max(calc(20% - var(--gap)), 5em) 1 1;} .mp-links.columns-6 > ul > li {flex: max(calc((100% / 6) - var(--gap)), 5em) 1 1;} .mp-links.columns-7 > ul > li {flex: max(calc((100% / 7) - var(--gap)), 5em) 1 1;} .mp-links > ul > li:hover a { text-decoration: underline; } .mp-links > ul > li > a { display: flex; align-items: center; justify-content: center; height:100%; flex:1 1 auto; box-sizing:border-box; padding:5px; } .mp-links > ul > li > a:first-child { height:100%; } .mp-links > ul > li > a:last-child:not(:first-child) { height:unset; } .mp-links.stretch, .mp-links.stretch > ul { height:100%; } .mp-links.side-image li { flex-flow:row nowrap; } /* MP icon lists */ .mp-iconlists { display: flex; flex-flow: wrap; gap: 5px 20px; } .mp-iconlists > .mp-iconlist { flex: 1; min-width: fit-content; } .mp-iconlist > h3 { padding: 0; margin: 0; } .mp-iconlist > ul { list-style: none; margin: 0; } /* MP gallery */ .mp-box ul.gallery { display: flex; flex-flow: wrap; gap: 5px 10px; align-items: flex-end; justify-content: space-evenly; margin: 0; } .mp-box ul.gallery .gallerytext { margin-top: 1em; background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: inset 0 0 20px 2px #000; text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000; } /*********************** * End main page layout * ************************/ /*********************** * Start DRUID infoboxes * ************************/ .druid-container { /* These variables are designed to inherit from your wiki's color variables. If your wiki uses a different naming scheme, change the inner names to match yours. If your wiki doesn't use color variables you should consider doing so, otherwise you can replace the inner variables or the fallback values with colors that match your wiki. */ --druid-background-color: var(--wiki-content-background-color, #ffffff); --druid-background-color--rgb: var(--wiki-content-background-color--rgb, 255, 255, 255); --druid-secondary-background-color: var(--wiki-accent-color, #36c); --druid-secondary-background-color--rgb: var(--wiki-accent-color--rgb, 51, 102, 204); --druid-secondary-background-label-color: var(--wiki-accent-label-color, #fff); --druid-secondary-background-label-color--rgb: var(--wiki-accent-label-color--rgb, 255, 255, 255); --druid-tertiary-background-color: var(--wiki-content-background-color--secondary, #eaecf0); --druid-tertiary-background-color--rgb: var(--wiki-content-background-color--secondary--rgb, 234, 236, 240); --druid-border-color: var(--wiki-content-border-color, #a7d7f9); --druid-border-color--rgb: var(--wiki-content-border-color--rgb, 167, 215, 249); --druid-link-color: var(--wiki-content-link-color, #0645ad); --druid-link-color--rgb: var(--wiki-content-link-color--rgb, 6, 69, 173); --druid-link-label-color: var(--wiki-content-link-label-color, #fff); --druid-link-label-color--rgb: var(--wiki-content-link-label-color--rgb, 255, 255, 255); } .druid-container { border: 4px solid var(--druid-border-color); border-radius: 3px; background: var(--druid-background-color); float: right; clear: right; margin: 0 0 1em 1em; width: 16.875em; box-sizing: border-box; border-collapse: collapse; } div.druid-container { width: 22em; } @media screen and (max-width: 450px) { .druid-container { width:100%; } } @media screen and (max-width: 720px) { .druid-container { float: none; margin: 0.5rem auto; } } .druid-main-images-file, .druid-main-image { text-align:center; } .druid-infobox .druid-title, .druid-infobox .druid-section { background:var(--druid-secondary-background-color); color:var(--druid-secondary-background-label-color); text-align:center; font-size:1.5em; padding:1px; } .druid-section { font-size: 1.25em; font-weight: 500; } .druid-label { font-weight:bold; text-align: right; box-sizing: border-box; } .druid-row > .druid-label { width: 48%; } .druid-row > .druid-label, .druid-row > .druid-data { padding-inline: 0.3em; } .druid-main-image, .druid-main-images { padding:5px; } .druid-main-image img, .druid-main-images img { max-width:100%; height:auto; } .druid-main-images-labels { display:flex; flex-direction:row; flex-wrap:wrap; justify-content: space-evenly; margin:0.25em; gap:0.25em; } .druid-main-images-label { cursor:pointer; flex:1 1 auto; text-align:center; transition:.1s ease-in; outline:1px solid var(--druid-link-color); } .druid-main-images-label.focused { background:var(--druid-link-color); color:var(--druid-link-label-color); } .druid-main-images-label:not(.focused):hover { background:rgba(var(--druid-link-color--rgb), 0.25); } .druid-toggleable-data:not(.focused), .druid-main-images-file:not(.focused), .druid-toggleable-heading:not(.focused) { display:none; } .druid-row:not(:has(.druid-grid)):has(.druid-toggleable-data-empty.focused) { display:none; } .druid-section:has(.druid-toggleable-heading-empty.focused) { display:none; } .druid-grid { display:grid; gap: 0.3em; padding: 0.35em; } .druid-grid-item { background:var(--druid-tertiary-background-color); padding:0.25em; border:1px solid rgba(var(--druid-border-color--rgb), 0.5); border-radius: 2px; } .druid-grid-item > .druid-label, .druid-grid-item > .druid-data { text-align: center; } .druid-collapsed { display:none; } .druid-collapsible { cursor:pointer; position:relative; } .druid-collapsible::after { content:'–'; display:block; position:absolute; right:10px; font-size:20px; font-weight:bold; color:var(--druid-secondary-background-label-color); } .druid-collapsible-collapsed::after { content:'+'; } .druid-section-container:has(.druid-toggleable-data-empty.focused):not(:has(.druid-toggleable-data-nonempty.focused)):not(:has(.druid-data-nonempty)) { display: none; } /***************************************** Div support *****************************************/ div.druid-row { display:flex; margin-block: 1px; } div.druid-row + div.druid-row { margin-top: 0; } div.druid-row > .druid-label { background: var(--druid-tertiary-background-color); } .druid-infobox .druid-title { font-weight: 700; } .druid-infobox #toc { display:none; } /*********************** * End DRUID infoboxes * ************************/ /*** Miscellaneous ***/ .responsive-image { max-width:100%; height:auto; } .view-dark .invert-on-dark, .view-light .invert-on-light { filter:invert(100%); } @media screen and (min-width:720px) { .mobileonly { display:none; } } @media screen and (max-width:720px) { .nomobile { display:none; } } /************************** * Start Modular Templates * **************************/ /********* [[Template:Ambox]] *********/ .ambox { border: 1px solid var(--wiki-content-border-color); border-left: 10px solid var(--ambox-color); border-radius: 2px; display: flex; align-items: center; gap: .6em; margin: 1em 0; padding: 3px .6em; background-color: var(--wiki-content-background-color--secondary); box-shadow: 2px 2px 5px 0px #0002; } @media (min-width: 720px) { .ambox { margin-inline: 10%; } } .ambox.tiny { padding: .04rem .5em; margin-inline: 0; width: fit-content; } .ambox + .ambox { margin-top: -.6em; } .ambox-content p { margin: .15em 0; } .ambox-title { font-weight: bold; } /********* [[Template:Hatnote]] *********/ .hatnote { padding: 1px 0 1px 1.6em; margin-bottom: 0.5em; font-style: italic; border-top: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); border-bottom: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); } .hatnote.icon { padding-left: 0; } /********* [[Template:Spoiler]] *********/ .spoiler-content { background-color: rgb(127, 127, 127); transition: all 0.3s; cursor: pointer; } .spoiler-content > span { opacity: 0; transition: all 0.3s; } .spoiler-content > * { pointer-events:none; } .spoiler-content.show > * { pointer-events:unset; } .spoiler-content.show { background-color: rgba(127, 127, 127, 0); } .spoiler-content.show > span { opacity: 1; } /********* [[Template:Link icon]] *********/ .link-icon { display: inline-flex; align-items: center; height: var(--link-icon-line-height); vertical-align: bottom; } .link-icon .regular { align-self: center; } .link-icon .regular a { display: flex; } .link-icon .regular img { height: var(--link-icon-size); max-width: var(--link-icon-size); } .link-icon .fallback { outline: 1px solid var(--wiki-content-text-color); border-radius: 50%; text-align: center; width: var(--link-icon-size); line-height: var(--link-icon-size); } .link-icon.notext .fallback { display: inline-block; } .link-icon.notext { display: inline; } /********* [[Template:Quote]] *********/ .quote { background: var(--wiki-content-background-color--secondary); border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: .5em 0; padding: .5em; } .quote .block { display: block; } .quote .title { font-size: large; font-weight: bold; } .quote .content { font-style: italic; } .quote .author { font-weight: bold; text-align: end; } .quote .marks-wrapper { display: flex; gap: 5px; } .quote .marks-wrapper::before, .quote .marks-wrapper::after { font-size: 100px; line-height: 0px; } .quote .marks-wrapper::before { content: "“"; margin-top: 40px; } .quote .marks-wrapper::after { content: "”"; align-self: end; margin-bottom: -10px; } /************************ * End Modular Templates * *************************/ 7e4ea297919ce183c85f82cde77cfb70e239700e 595 594 2024-05-29T00:52:40Z Geekette828 51691 css text/css /* CSS placed here will be applied to all skins */ :root, .view-light { --wiki-body-background-image: none; --wiki-body-background-color: #f6f6f6; --wiki-body-background-color--rgb: 246,246,246; --wiki-body-dynamic-color: #000000; --wiki-body-dynamic-color--rgb: 0,0,0; --wiki-body-dynamic-color--inverted: #ffffff; --wiki-body-dynamic-color--inverted--rgb: 255,255,255; --wiki-body-dynamic-color--secondary: #333333; --wiki-body-dynamic-color--secondary--rgb: 51,51,51; --wiki-body-dynamic-color--secondary--inverted: #dddddd; --wiki-body-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #ffffff; --wiki-content-background-color--rgb: 255, 255, 255; --wiki-content-background-opacity: 1; --wiki-content-background-color--secondary: #fbfbfb; --wiki-content-background-color--secondary--rgb: 251, 251, 251; --wiki-content-border-color: #a7d7f9; --wiki-content-border-color--rgb: 167, 215, 249; --wiki-content-text-color: #111111; --wiki-content-text-color--rgb: 17, 17, 17; --wiki-content-link-color: #0645ad; --wiki-content-link-color--rgb: 6, 69, 173; --wiki-content-link-label-color: #ffffff; --wiki-content-link-label-color--rgb: 255,255,255; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #ba0000; --wiki-content-redlink-color--rgb: 186,0,0; --wiki-content-text-mix-color: #8a8b8b; --wiki-content-text-mix-color--rgb: 138,139,139; --wiki-content-text-mix-color-95: #eef0f0; --wiki-content-text-mix-color-95--rgb: 238,240,240; --wiki-content-dynamic-color: #000000; --wiki-content-dynamic-color--rgb: 0,0,0; --wiki-content-dynamic-color--inverted: #ffffff; --wiki-content-dynamic-color--inverted--rgb: 255,255,255; --wiki-content-dynamic-color--secondary: #333333; --wiki-content-dynamic-color--secondary--rgb: 51,51,51; --wiki-content-dynamic-color--secondary--inverted: #dddddd; --wiki-content-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #3366cc; --wiki-accent-color--rgb: 51, 102, 204; --wiki-accent-color--hover: #447ff5; --wiki-accent-color--hover--rgb: 68, 127, 245; --wiki-accent-label-color: #ffffff; --wiki-accent-label-color--rgb: 255, 255, 255; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: 0.0; --wiki-sidebar-border-color: var(--wiki-body-background-color); --wiki-sidebar-border-color--rgb: var(--wiki-body-background-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: #e8f2f8; --wiki-navigation-background-color--secondary--rgb: 232, 242, 248; --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #bf0017; --wiki-alert-color--rgb: 191,0,23; --wiki-alert-label-color: #ffffff; --wiki-alert-label-color--rgb: 255, 255, 255; --wiki-warning-color: #cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #ffffff; --wiki-success-label-color--rgb: 255, 255, 255; --wiki-icon-general-filter: ; --wiki-icon-to-link-filter: invert(20%) sepia(93%) saturate(2141%) hue-rotate(210deg) brightness(83%) contrast(103%); } .view-dark { --wiki-body-background-image:url(https://lkg.wiki.gg/images/0/0c/Background-dark.png); --wiki-body-background-color:#171717; --wiki-body-background-color--rgb:23,23,23; --wiki-body-dynamic-color:#ffffff; --wiki-body-dynamic-color--rgb:255,255,255; --wiki-body-dynamic-color--inverted:#000000; --wiki-body-dynamic-color--inverted--rgb:0,0,0; --wiki-body-dynamic-color--secondary:#dddddd; --wiki-body-dynamic-color--secondary--rgb:221,221,221; --wiki-body-dynamic-color--secondary--inverted:#333333; --wiki-body-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-body-font-family:sans-serif; --wiki-content-background-color:#101221; --wiki-content-background-color--rgb:18,18,33; --wiki-content-background-opacity:1.0; --wiki-content-background-color--secondary:#0d112a; --wiki-content-background-color--secondary--rgb:13,17,42; --wiki-content-border-color:#9a329e; --wiki-content-border-color--rgb:153,26,81; --wiki-content-text-color:#e1fafe; --wiki-content-text-color--rgb:225,250,254; --wiki-content-link-color:#00dcff; --wiki-content-link-color--rgb:109,138,251; --wiki-content-link-label-color:#000; --wiki-content-link-label-color--rgb:0,0,0; --wiki-content-link-color--visited:var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb:var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover:var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb:var(--wiki-content-link-color--rgb); --wiki-content-redlink-color:#FC3B2C; --wiki-content-redlink-color--rgb:252,59,44; --wiki-content-text-mix-color:#868686; --wiki-content-text-mix-color--rgb:134,134,134; --wiki-content-text-mix-color-95:#2a2a2a; --wiki-content-text-mix-color-95--rgb:42,42,42; --wiki-content-dynamic-color:#ffffff; --wiki-content-dynamic-color--rgb:255,255,255; --wiki-content-dynamic-color--inverted:#000000; --wiki-content-dynamic-color--inverted--rgb:0,0,0; --wiki-content-dynamic-color--secondary:#dddddd; --wiki-content-dynamic-color--secondary--rgb:221,221,221; --wiki-content-dynamic-color--secondary--inverted:#333333; --wiki-content-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-heading-color:var(--wiki-content-text-color); --wiki-heading-color--rgb:var(--wiki-content-text-color--rgb); --wiki-heading-font-family:'Linux Libertine','Georgia','Times',serif; --wiki-accent-color:#9a329e; --wiki-accent-color--rgb:255,25,128; --wiki-accent-color--hover:#00dcff; --wiki-accent-color--hover--rgb:216,32,115; --wiki-accent-label-color:#000; --wiki-accent-label-color--rgb:0,0,0; --wiki-accent-link-color:#22214d; --wiki-accent-link-color--rgb:34,33,77; --wiki-sidebar-background-color:var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity:var(--wiki-content-background-opacity); --wiki-sidebar-border-color:var(--wiki-content-border-color); --wiki-sidebar-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-sidebar-link-color:var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb:var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color:var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb:var(--wiki-heading-color--rgb); --wiki-navigation-background-color:var(--wiki-content-border-color); --wiki-navigation-background-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary:var(--wiki-content-background-color--secondary); --wiki-navigation-background-color--secondary--rgb:var(--wiki-content-background-color--secondary--rgb); --wiki-navigation-border-color:var(--wiki-content-border-color); --wiki-navigation-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-text-color:var(--wiki-content-link-color); --wiki-navigation-text-color--rgb:var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color:var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color:var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb:var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color:var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb:var(--wiki-content-text-color--rgb); --wiki-alert-color:#ce0018; --wiki-alert-color--rgb:206,0,24; --wiki-alert-label-color:#000000; --wiki-alert-label-color--rgb:0,0,0; --wiki-warning-color:#cf721c; --wiki-warning-color--rgb:207,114,28; --wiki-warning-label-color:#000000; --wiki-warning-label-color--rgb:0,0,0; --wiki-success-color:#0c742f; --wiki-success-color--rgb:12,116,47; --wiki-success-label-color:#000000; --wiki-success-label-color--rgb:0,0,0; --wiki-icon-general-filter:invert(100%); --wiki-icon-to-link-filter:invert(60%) sepia(70%) saturate(3715%) hue-rotate(206deg) brightness(101%) contrast(97%); } /***************************** * PortableInfoboxes * ******************************/ :root { --pi-background: var(--wiki-content-background-color); --pi-secondary-background: var(--wiki-accent-color); --pi-secondary-background--rgb: var(--wiki-accent-color--rgb); --pi-secondary-background-label: var(--wiki-accent-label-color); --pi-border-color: rgba(var(--pi-secondary-background--rgb),0.5); } .portable-infobox .pi-title, .portable-infobox .pi-header { text-align:center; font-size:1.5em; background:rgba(var(--pi-secondary-background--rgb), 0.75); color:var(--pi-secondary-background-label); } .portable-infobox .pi-data { background:rgba(var(--pi-secondary-background--rgb), 0.18); } .portable-infobox .pi-image { padding: 8px; } .pi-image-thumbnail { max-width:100%; } .pi-section-navigation .pi-section-tab.pi-section-active, .pi-section-navigation .pi-section-tab.current, .pi-media-collection .pi-tab-link.current { background: var(--pi-secondary-background); color: var(--pi-secondary-background-label); } /* overqualify these to overwrite normal content heading styles */ .mw-body .portable-infobox h2, .mw-body .portable-infobox h3 { border-bottom: 0; font-family: inherit; font-weight: 700; margin: 0; } /***************************** * End PortableInfoboxes * ******************************/ /********************************************************************************************************************* * Semantically-correct horizontal lists (for Module:Navbox, and they're more machine-readable than {{*}}-formatting) * **********************************************************************************************************************/ .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } /* Display list items inline */ .hlist dd, .hlist dt, .hlist li { /* * don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again * We also want to reset margin-right in Minerva */ margin: 0; display: inline; } /* Display requested top-level lists inline */ .hlist.inline, .hlist.inline dl, .hlist.inline ol, .hlist.inline ul, /* Display nested lists inline */ .hlist dl dl, .hlist dl ol, .hlist dl ul, .hlist ol dl, .hlist ol ol, .hlist ol ul, .hlist ul dl, .hlist ul ol, .hlist ul ul { display: inline; } /* Hide empty list items */ .hlist .mw-empty-li { display: none; } /* TODO: :not() can maybe be used here to remove the later rule. naive test * seems to work. more testing needed. like so: */ .hlist dt:not(:last-child)::after { content: ": "; } .hlist dd:not(:last-child)::after, .hlist li:not(:last-child)::after { content: " · "; font-weight: bold; } /* Add parentheses around nested lists */ .hlist dd dd:first-child::before, .hlist dd dt:first-child::before, .hlist dd li:first-child::before, .hlist dt dd:first-child::before, .hlist dt dt:first-child::before, .hlist dt li:first-child::before, .hlist li dd:first-child::before, .hlist li dt:first-child::before, .hlist li li:first-child::before { content: " ("; font-weight: normal; } .hlist dd dd:last-child::after, .hlist dd dt:last-child::after, .hlist dd li:last-child::after, .hlist dt dd:last-child::after, .hlist dt dt:last-child::after, .hlist dt li:last-child::after, .hlist li dd:last-child::after, .hlist li dt:last-child::after, .hlist li li:last-child::after { content: ")"; font-weight: normal; } /* Put ordinals in front of ordered list items */ .hlist ol { counter-reset: listitem; } .hlist ol > li { counter-increment: listitem; } .hlist ol > li::before { content: " " counter(listitem) "\a0"; } .hlist dd ol > li:first-child::before, .hlist dt ol > li:first-child::before, .hlist li ol > li:first-child::before { content: " (" counter(listitem) "\a0"; } /******************************************** * End semantically-correct horizontal lists * *********************************************/ /********************************************************** * Template:Navbox (needs semantic horizontal lists above) * ***********************************************************/ .navbox { clear: both; margin: 1em 0; padding: 3px; font-size: 90%; width: 100%; border: 1px solid var(--wiki-content-border-color); box-sizing: border-box; } .navbox-inner, .navbox-subgroup { border-spacing: 0; width: 100%; } /* Reduce spacing between adjacent navboxes */ .navbox + .navbox { margin-top: -1px; } /* Spacing between rows */ .navbox-spacer { height: 2px; } /* Title bars and labels */ .navbox-title { font-weight: bold; font-size: 115%; padding: 0.25em 0.6em; line-height: 1.5em; color: var(--wiki-accent-label-color); background: var(--wiki-accent-color); } .navbox-title, .navbox-abovebelow { padding-left: 1em; padding-right: 1em; text-align: center; } .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: rgba(var(--wiki-accent-color--rgb), 0.18); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .navbox .navbox-title a, .navbox .navbox-title a:visited, .navbox .navbox-title a.external, .navbox .navbox-title a.external:visited { color: var(--wiki-accent-link-color); } .navbox-title .mw-collapsible-toggle { font-weight: normal; text-align: right; } .navbox-title-text { font-size: 105%; } /* Navbox-related links */ .navbox-title .navbar { float: left; margin-right: 0.5em; } .navbox-title .navbar a.external::after { content: unset; } /* Groups */ .navbox-group { font-weight: bold; padding: 0 0.5em; white-space: nowrap; text-align: center; } /* Zebra colouring for rows */ .navbox-even { background: #fff1; } /* Subgroups: equal group labels between different child navboxes */ .navbox-subgroup > tbody > tr { display: flex; } .navbox-subgroup .navbox-title { width: 100%; } .navbox-subgroup .navbox-group { display: flex; align-items: center; justify-content: center; flex-basis: 11em; flex-grow: 1; flex-shrink: 0; white-space: normal; } /* Lists */ .navbox-list { width: 100%; } /* Mobile adjustments */ @media screen and (max-width: 1280px) { .mw-body .navbox-inner table { display: table; } } @media screen and (max-width: 720px) { .mw-body .navbox { display: none; } } /********************** * End Template:Navbox * ***********************/ /******************* * Main page layout * ********************/ #mp-box-welcome {grid-area: welcome;} #mp-box-about {grid-area: about;} #mp-box-links {grid-area: links;} #mp-box-contribute {grid-area: contribute;} #mp-box-featured {grid-area: featured;} #mp-box-basics {grid-area: basics;} #mp-box-gallery {grid-area: gallery;} #mp-box-iconlists {grid-area: iconlists;} /* Example Main Page 1 Grid Layout */ #mp-layout1-container { display:grid; grid-template-areas: "welcome" "about" "featured" "basics" "gallery" "links" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout1-container { grid-template-areas: "welcome welcome" "about about" "featured basics" "gallery links" "contribute contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout1-container { grid-template-areas: "welcome welcome welcome" "about about basics" "featured featured basics" "gallery links links" "contribute contribute contribute"; grid-template-columns: 2fr 1fr 2fr; } } /* Example Main Page 2 Grid Layout */ #mp-layout2-container { display:grid; grid-template-areas: "welcome" "links" "about" "gallery" "iconlists" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout2-container { grid-template-areas: "welcome links" "gallery about" "iconlists about" "iconlists contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout2-container { grid-template-areas: "welcome welcome links" "welcome welcome about" "gallery gallery about" "iconlists iconlists contribute"; grid-template-columns: 3fr 2fr 2fr; } } /* Example Main Page 3 Grid Layout */ #mp-layout3-container { display:grid; grid-template-areas: "welcome" "about" "featured" "four" "priority" "projects" "wiki"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout3-container { grid-template-areas: "welcome welcome" "about about" "featured four" "priority projects" "wiki wiki"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout3-container { grid-template-areas: "welcome welcome welcome" "about about four" "featured featured four" "priority projects projects" "wiki wiki wiki"; grid-template-columns:2fr 1fr 2fr; } } .mp-box { display:flex; flex-flow:column nowrap; width: calc(100% - 2px); box-sizing: border-box; background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.25); border:1px solid var(--wiki-content-border-color); padding:0px; } .mp-body { height: 100%; display: flex; padding:0.5em; flex-flow: column nowrap; } .mp-box.centered-content .mp-body { height: 100%; display: flex; flex-flow: column nowrap; justify-content: space-evenly; } .mp-box.has-floating-image { display:block; } .mp-box.has-floating-image .mp-body { height:unset; display:block; } .mp-box h2 { text-align:center; font-weight:bold; font-family:var(--wiki-heading-font-family); overflow: initial; border-bottom: 1px solid var(--wiki-content-border-color); font-size: 150%; margin: 0; padding: 5px 0; color:var(--wiki-heading-color); } .mp-box .welcome-message { font-size: 200%; margin: 0; padding: 5px 0; color: #fff; filter: drop-shadow(0px 2px 3px #000); } #mp-banner-container { position: relative; } #mp-box-welcome { text-align:center; position:relative; overflow:hidden; } #mp-welcome { position: relative; height: 100%; font-family: var(--wiki-heading-font-family); z-index: 2; box-sizing: border-box; } #mp-welcome .welcome-subtitle { height: 100%; background:rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); padding:0.5em; } #mp-banner { position: absolute; top: 48px; width: 100%; height: 100%; filter: blur(5px); z-index: -1; background: url(/images/e/e0/MP_banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: top center; } .view-dark #mp-banner { filter: blur(5px) brightness(50%); } .view-light #mp-banner { filter: blur(5px) contrast(50%); } /* [[Template:MP_link]] */ .mp-links { --gap:10px; } .mp-links > ul { display: flex; flex-flow: row wrap; justify-content: space-evenly; margin: 2px; gap:var(--gap); } .mp-links > ul > li { display:flex; flex-flow:column nowrap; align-items:stretch; text-align: center; box-sizing:border-box; flex: max(calc(50% - var(--gap)), 5em) 1 1; outline:1px solid var(--wiki-content-link-color); transition:0.1s ease-in; } .mp-links > ul > li:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); } .mp-links.columns-1 > ul > li {flex: max(calc(100% - var(--gap)), 5em) 1 1;} .mp-links.columns-2 > ul > li {flex: max(calc(50% - var(--gap)), 5em) 1 1;} .mp-links.columns-3 > ul > li {flex: max(calc((100% / 3) - var(--gap)), 5em) 1 1;} .mp-links.columns-4 > ul > li {flex: max(calc(25% - var(--gap)), 5em) 1 1;} .mp-links.columns-5 > ul > li {flex: max(calc(20% - var(--gap)), 5em) 1 1;} .mp-links.columns-6 > ul > li {flex: max(calc((100% / 6) - var(--gap)), 5em) 1 1;} .mp-links.columns-7 > ul > li {flex: max(calc((100% / 7) - var(--gap)), 5em) 1 1;} .mp-links > ul > li:hover a { text-decoration: underline; } .mp-links > ul > li > a { display: flex; align-items: center; justify-content: center; height:100%; flex:1 1 auto; box-sizing:border-box; padding:5px; } .mp-links > ul > li > a:first-child { height:100%; } .mp-links > ul > li > a:last-child:not(:first-child) { height:unset; } .mp-links.stretch, .mp-links.stretch > ul { height:100%; } .mp-links.side-image li { flex-flow:row nowrap; } /* MP icon lists */ .mp-iconlists { display: flex; flex-flow: wrap; gap: 5px 20px; } .mp-iconlists > .mp-iconlist { flex: 1; min-width: fit-content; } .mp-iconlist > h3 { padding: 0; margin: 0; } .mp-iconlist > ul { list-style: none; margin: 0; } /* MP gallery */ .mp-box ul.gallery { display: flex; flex-flow: wrap; gap: 5px 10px; align-items: flex-end; justify-content: space-evenly; margin: 0; } .mp-box ul.gallery .gallerytext { margin-top: 1em; background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: inset 0 0 20px 2px #000; text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000; } /*********************** * End main page layout * ************************/ /*********************** * Start DRUID infoboxes * ************************/ .druid-container { /* These variables are designed to inherit from your wiki's color variables. If your wiki uses a different naming scheme, change the inner names to match yours. If your wiki doesn't use color variables you should consider doing so, otherwise you can replace the inner variables or the fallback values with colors that match your wiki. */ --druid-background-color: var(--wiki-content-background-color, #ffffff); --druid-background-color--rgb: var(--wiki-content-background-color--rgb, 255, 255, 255); --druid-secondary-background-color: var(--wiki-accent-color, #36c); --druid-secondary-background-color--rgb: var(--wiki-accent-color--rgb, 51, 102, 204); --druid-secondary-background-label-color: var(--wiki-accent-label-color, #fff); --druid-secondary-background-label-color--rgb: var(--wiki-accent-label-color--rgb, 255, 255, 255); --druid-tertiary-background-color: var(--wiki-content-background-color--secondary, #eaecf0); --druid-tertiary-background-color--rgb: var(--wiki-content-background-color--secondary--rgb, 234, 236, 240); --druid-border-color: var(--wiki-content-border-color, #a7d7f9); --druid-border-color--rgb: var(--wiki-content-border-color--rgb, 167, 215, 249); --druid-link-color: var(--wiki-content-link-color, #0645ad); --druid-link-color--rgb: var(--wiki-content-link-color--rgb, 6, 69, 173); --druid-link-label-color: var(--wiki-content-link-label-color, #fff); --druid-link-label-color--rgb: var(--wiki-content-link-label-color--rgb, 255, 255, 255); } .druid-container { border: 4px solid var(--druid-border-color); border-radius: 3px; background: var(--druid-background-color); float: right; clear: right; margin: 0 0 1em 1em; width: 16.875em; box-sizing: border-box; border-collapse: collapse; } div.druid-container { width: 22em; } @media screen and (max-width: 450px) { .druid-container { width:100%; } } @media screen and (max-width: 720px) { .druid-container { float: none; margin: 0.5rem auto; } } .druid-main-images-file, .druid-main-image { text-align:center; } .druid-infobox .druid-title, .druid-infobox .druid-section { background:var(--druid-secondary-background-color); color:var(--druid-secondary-background-label-color); text-align:center; font-size:1.5em; padding:1px; } .druid-section { font-size: 1.25em; font-weight: 500; } .druid-label { font-weight:bold; text-align: right; box-sizing: border-box; } .druid-row > .druid-label { width: 48%; } .druid-row > .druid-label, .druid-row > .druid-data { padding-inline: 0.3em; } .druid-main-image, .druid-main-images { padding:5px; } .druid-main-image img, .druid-main-images img { max-width:100%; height:auto; } .druid-main-images-labels { display:flex; flex-direction:row; flex-wrap:wrap; justify-content: space-evenly; margin:0.25em; gap:0.25em; } .druid-main-images-label { cursor:pointer; flex:1 1 auto; text-align:center; transition:.1s ease-in; outline:1px solid var(--druid-link-color); } .druid-main-images-label.focused { background:var(--druid-link-color); color:var(--druid-link-label-color); } .druid-main-images-label:not(.focused):hover { background:rgba(var(--druid-link-color--rgb), 0.25); } .druid-toggleable-data:not(.focused), .druid-main-images-file:not(.focused), .druid-toggleable-heading:not(.focused) { display:none; } .druid-row:not(:has(.druid-grid)):has(.druid-toggleable-data-empty.focused) { display:none; } .druid-section:has(.druid-toggleable-heading-empty.focused) { display:none; } .druid-grid { display:grid; gap: 0.3em; padding: 0.35em; } .druid-grid-item { background:var(--druid-tertiary-background-color); padding:0.25em; border:1px solid rgba(var(--druid-border-color--rgb), 0.5); border-radius: 2px; } .druid-grid-item > .druid-label, .druid-grid-item > .druid-data { text-align: center; } .druid-collapsed { display:none; } .druid-collapsible { cursor:pointer; position:relative; } .druid-collapsible::after { content:'–'; display:block; position:absolute; right:10px; font-size:20px; font-weight:bold; color:var(--druid-secondary-background-label-color); } .druid-collapsible-collapsed::after { content:'+'; } .druid-section-container:has(.druid-toggleable-data-empty.focused):not(:has(.druid-toggleable-data-nonempty.focused)):not(:has(.druid-data-nonempty)) { display: none; } /***************************************** Div support *****************************************/ div.druid-row { display:flex; margin-block: 1px; } div.druid-row + div.druid-row { margin-top: 0; } div.druid-row > .druid-label { background: var(--druid-tertiary-background-color); } .druid-infobox .druid-title { font-weight: 700; } .druid-infobox #toc { display:none; } /*********************** * End DRUID infoboxes * ************************/ /*** Miscellaneous ***/ .responsive-image { max-width:100%; height:auto; } .view-dark .invert-on-dark, .view-light .invert-on-light { filter:invert(100%); } @media screen and (min-width:720px) { .mobileonly { display:none; } } @media screen and (max-width:720px) { .nomobile { display:none; } } /************************** * Start Modular Templates * **************************/ /********* [[Template:Ambox]] *********/ .ambox { border: 1px solid var(--wiki-content-border-color); border-left: 10px solid var(--ambox-color); border-radius: 2px; display: flex; align-items: center; gap: .6em; margin: 1em 0; padding: 3px .6em; background-color: var(--wiki-content-background-color--secondary); box-shadow: 2px 2px 5px 0px #0002; } @media (min-width: 720px) { .ambox { margin-inline: 10%; } } .ambox.tiny { padding: .04rem .5em; margin-inline: 0; width: fit-content; } .ambox + .ambox { margin-top: -.6em; } .ambox-content p { margin: .15em 0; } .ambox-title { font-weight: bold; } /********* [[Template:Hatnote]] *********/ .hatnote { padding: 1px 0 1px 1.6em; margin-bottom: 0.5em; font-style: italic; border-top: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); border-bottom: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); } .hatnote.icon { padding-left: 0; } /********* [[Template:Spoiler]] *********/ .spoiler-content { background-color: rgb(127, 127, 127); transition: all 0.3s; cursor: pointer; } .spoiler-content > span { opacity: 0; transition: all 0.3s; } .spoiler-content > * { pointer-events:none; } .spoiler-content.show > * { pointer-events:unset; } .spoiler-content.show { background-color: rgba(127, 127, 127, 0); } .spoiler-content.show > span { opacity: 1; } /********* [[Template:Link icon]] *********/ .link-icon { display: inline-flex; align-items: center; height: var(--link-icon-line-height); vertical-align: bottom; } .link-icon .regular { align-self: center; } .link-icon .regular a { display: flex; } .link-icon .regular img { height: var(--link-icon-size); max-width: var(--link-icon-size); } .link-icon .fallback { outline: 1px solid var(--wiki-content-text-color); border-radius: 50%; text-align: center; width: var(--link-icon-size); line-height: var(--link-icon-size); } .link-icon.notext .fallback { display: inline-block; } .link-icon.notext { display: inline; } /********* [[Template:Quote]] *********/ .quote { background: var(--wiki-content-background-color--secondary); border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: .5em 0; padding: .5em; } .quote .block { display: block; } .quote .title { font-size: large; font-weight: bold; } .quote .content { font-style: italic; } .quote .author { font-weight: bold; text-align: end; } .quote .marks-wrapper { display: flex; gap: 5px; } .quote .marks-wrapper::before, .quote .marks-wrapper::after { font-size: 100px; line-height: 0px; } .quote .marks-wrapper::before { content: "“"; margin-top: 40px; } .quote .marks-wrapper::after { content: "”"; align-self: end; margin-bottom: -10px; } /************************ * End Modular Templates * *************************/ becdb5c5efad9c2cf5d55ebb14774dcc87535778 604 595 2024-05-29T01:45:32Z Geekette828 51691 css text/css /* CSS placed here will be applied to all skins */ :root, .view-light { --wiki-body-background-image: none; --wiki-body-background-color: #f6f6f6; --wiki-body-background-color--rgb: 246,246,246; --wiki-body-dynamic-color: #000000; --wiki-body-dynamic-color--rgb: 0,0,0; --wiki-body-dynamic-color--inverted: #ffffff; --wiki-body-dynamic-color--inverted--rgb: 255,255,255; --wiki-body-dynamic-color--secondary: #333333; --wiki-body-dynamic-color--secondary--rgb: 51,51,51; --wiki-body-dynamic-color--secondary--inverted: #dddddd; --wiki-body-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #ffffff; --wiki-content-background-color--rgb: 255, 255, 255; --wiki-content-background-opacity: 1; --wiki-content-background-color--secondary: #fbfbfb; --wiki-content-background-color--secondary--rgb: 251, 251, 251; --wiki-content-table-border-color:#ffffff; --wiki-content-border-color: #a7d7f9; --wiki-content-border-color--rgb: 167, 215, 249; --wiki-content-text-color: #111111; --wiki-content-text-color--rgb: 17, 17, 17; --wiki-content-link-color: #0645ad; --wiki-content-link-color--rgb: 6, 69, 173; --wiki-content-link-label-color: #ffffff; --wiki-content-link-label-color--rgb: 255,255,255; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #ba0000; --wiki-content-redlink-color--rgb: 186,0,0; --wiki-content-text-mix-color: #8a8b8b; --wiki-content-text-mix-color--rgb: 138,139,139; --wiki-content-text-mix-color-95: #eef0f0; --wiki-content-text-mix-color-95--rgb: 238,240,240; --wiki-content-dynamic-color: #000000; --wiki-content-dynamic-color--rgb: 0,0,0; --wiki-content-dynamic-color--inverted: #ffffff; --wiki-content-dynamic-color--inverted--rgb: 255,255,255; --wiki-content-dynamic-color--secondary: #333333; --wiki-content-dynamic-color--secondary--rgb: 51,51,51; --wiki-content-dynamic-color--secondary--inverted: #dddddd; --wiki-content-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #3366cc; --wiki-accent-color--rgb: 51, 102, 204; --wiki-accent-color--hover: #447ff5; --wiki-accent-color--hover--rgb: 68, 127, 245; --wiki-accent-label-color: #ffffff; --wiki-accent-label-color--rgb: 255, 255, 255; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: 0.0; --wiki-sidebar-border-color: var(--wiki-body-background-color); --wiki-sidebar-border-color--rgb: var(--wiki-body-background-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: #e8f2f8; --wiki-navigation-background-color--secondary--rgb: 232, 242, 248; --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #bf0017; --wiki-alert-color--rgb: 191,0,23; --wiki-alert-label-color: #ffffff; --wiki-alert-label-color--rgb: 255, 255, 255; --wiki-warning-color: #cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #ffffff; --wiki-success-label-color--rgb: 255, 255, 255; --wiki-icon-general-filter: ; --wiki-icon-to-link-filter: invert(20%) sepia(93%) saturate(2141%) hue-rotate(210deg) brightness(83%) contrast(103%); } .view-dark { --wiki-body-background-image:url(https://lkg.wiki.gg/images/0/0c/Background-dark.png); --wiki-body-background-color:#171717; --wiki-body-background-color--rgb:23,23,23; --wiki-body-dynamic-color:#ffffff; --wiki-body-dynamic-color--rgb:255,255,255; --wiki-body-dynamic-color--inverted:#000000; --wiki-body-dynamic-color--inverted--rgb:0,0,0; --wiki-body-dynamic-color--secondary:#dddddd; --wiki-body-dynamic-color--secondary--rgb:221,221,221; --wiki-body-dynamic-color--secondary--inverted:#333333; --wiki-body-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-body-font-family:sans-serif; --wiki-content-background-color:#101221; --wiki-content-background-color--rgb:18,18,33; --wiki-content-background-opacity:1.0; --wiki-content-background-color--secondary:#0d112a; --wiki-content-background-color--secondary--rgb:13,17,42; --wiki-content-table-border-color:#0053a8; --wiki-content-border-color:#9a329e; --wiki-content-border-color--rgb:153,26,81; --wiki-content-text-color:#e1fafe; --wiki-content-text-color--rgb:225,250,254; --wiki-content-link-color:#00dcff; --wiki-content-link-color--rgb:109,138,251; --wiki-content-link-label-color:#000; --wiki-content-link-label-color--rgb:0,0,0; --wiki-content-link-color--visited:var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb:var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover:var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb:var(--wiki-content-link-color--rgb); --wiki-content-redlink-color:#FC3B2C; --wiki-content-redlink-color--rgb:252,59,44; --wiki-content-text-mix-color:#868686; --wiki-content-text-mix-color--rgb:134,134,134; --wiki-content-text-mix-color-95:#2a2a2a; --wiki-content-text-mix-color-95--rgb:42,42,42; --wiki-content-dynamic-color:#ffffff; --wiki-content-dynamic-color--rgb:255,255,255; --wiki-content-dynamic-color--inverted:#000000; --wiki-content-dynamic-color--inverted--rgb:0,0,0; --wiki-content-dynamic-color--secondary:#dddddd; --wiki-content-dynamic-color--secondary--rgb:221,221,221; --wiki-content-dynamic-color--secondary--inverted:#333333; --wiki-content-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-heading-color:var(--wiki-content-text-color); --wiki-heading-color--rgb:var(--wiki-content-text-color--rgb); --wiki-heading-font-family:'Linux Libertine','Georgia','Times',serif; --wiki-accent-color:#9a329e; --wiki-accent-color--rgb:255,25,128; --wiki-accent-color--hover:#00dcff; --wiki-accent-color--hover--rgb:216,32,115; --wiki-accent-label-color:#000; --wiki-accent-label-color--rgb:0,0,0; --wiki-accent-link-color:#22214d; --wiki-accent-link-color--rgb:34,33,77; --wiki-sidebar-background-color:var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity:var(--wiki-content-background-opacity); --wiki-sidebar-border-color:var(--wiki-content-border-color); --wiki-sidebar-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-sidebar-link-color:var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb:var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color:var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb:var(--wiki-heading-color--rgb); --wiki-navigation-background-color:var(--wiki-content-border-color); --wiki-navigation-background-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary:var(--wiki-content-background-color--secondary); --wiki-navigation-background-color--secondary--rgb:var(--wiki-content-background-color--secondary--rgb); --wiki-navigation-border-color:var(--wiki-content-border-color); --wiki-navigation-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-text-color:var(--wiki-content-link-color); --wiki-navigation-text-color--rgb:var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color:var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color:var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb:var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color:var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb:var(--wiki-content-text-color--rgb); --wiki-alert-color:#ce0018; --wiki-alert-color--rgb:206,0,24; --wiki-alert-label-color:#000000; --wiki-alert-label-color--rgb:0,0,0; --wiki-warning-color:#cf721c; --wiki-warning-color--rgb:207,114,28; --wiki-warning-label-color:#000000; --wiki-warning-label-color--rgb:0,0,0; --wiki-success-color:#0c742f; --wiki-success-color--rgb:12,116,47; --wiki-success-label-color:#000000; --wiki-success-label-color--rgb:0,0,0; --wiki-icon-general-filter:invert(100%); --wiki-icon-to-link-filter:invert(60%) sepia(70%) saturate(3715%) hue-rotate(206deg) brightness(101%) contrast(97%); } /***************************** * PortableInfoboxes * ******************************/ :root { --pi-background: var(--wiki-content-background-color); --pi-secondary-background: var(--wiki-accent-color); --pi-secondary-background--rgb: var(--wiki-accent-color--rgb); --pi-secondary-background-label: var(--wiki-accent-label-color); --pi-border-color: rgba(var(--pi-secondary-background--rgb),0.5); } .portable-infobox .pi-title, .portable-infobox .pi-header { text-align:center; font-size:1.5em; background:rgba(var(--pi-secondary-background--rgb), 0.75); color:var(--pi-secondary-background-label); } .portable-infobox .pi-data { background:rgba(var(--pi-secondary-background--rgb), 0.18); } .portable-infobox .pi-image { padding: 8px; } .pi-image-thumbnail { max-width:100%; } .pi-section-navigation .pi-section-tab.pi-section-active, .pi-section-navigation .pi-section-tab.current, .pi-media-collection .pi-tab-link.current { background: var(--pi-secondary-background); color: var(--pi-secondary-background-label); } /* overqualify these to overwrite normal content heading styles */ .mw-body .portable-infobox h2, .mw-body .portable-infobox h3 { border-bottom: 0; font-family: inherit; font-weight: 700; margin: 0; } /***************************** * End PortableInfoboxes * ******************************/ /********************************************************************************************************************* * Semantically-correct horizontal lists (for Module:Navbox, and they're more machine-readable than {{*}}-formatting) * **********************************************************************************************************************/ .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } /* Display list items inline */ .hlist dd, .hlist dt, .hlist li { /* * don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again * We also want to reset margin-right in Minerva */ margin: 0; display: inline; } /* Display requested top-level lists inline */ .hlist.inline, .hlist.inline dl, .hlist.inline ol, .hlist.inline ul, /* Display nested lists inline */ .hlist dl dl, .hlist dl ol, .hlist dl ul, .hlist ol dl, .hlist ol ol, .hlist ol ul, .hlist ul dl, .hlist ul ol, .hlist ul ul { display: inline; } /* Hide empty list items */ .hlist .mw-empty-li { display: none; } /* TODO: :not() can maybe be used here to remove the later rule. naive test * seems to work. more testing needed. like so: */ .hlist dt:not(:last-child)::after { content: ": "; } .hlist dd:not(:last-child)::after, .hlist li:not(:last-child)::after { content: " · "; font-weight: bold; } /* Add parentheses around nested lists */ .hlist dd dd:first-child::before, .hlist dd dt:first-child::before, .hlist dd li:first-child::before, .hlist dt dd:first-child::before, .hlist dt dt:first-child::before, .hlist dt li:first-child::before, .hlist li dd:first-child::before, .hlist li dt:first-child::before, .hlist li li:first-child::before { content: " ("; font-weight: normal; } .hlist dd dd:last-child::after, .hlist dd dt:last-child::after, .hlist dd li:last-child::after, .hlist dt dd:last-child::after, .hlist dt dt:last-child::after, .hlist dt li:last-child::after, .hlist li dd:last-child::after, .hlist li dt:last-child::after, .hlist li li:last-child::after { content: ")"; font-weight: normal; } /* Put ordinals in front of ordered list items */ .hlist ol { counter-reset: listitem; } .hlist ol > li { counter-increment: listitem; } .hlist ol > li::before { content: " " counter(listitem) "\a0"; } .hlist dd ol > li:first-child::before, .hlist dt ol > li:first-child::before, .hlist li ol > li:first-child::before { content: " (" counter(listitem) "\a0"; } /******************************************** * End semantically-correct horizontal lists * *********************************************/ /********************************************************** * Template:Navbox (needs semantic horizontal lists above) * ***********************************************************/ .navbox { clear: both; margin: 1em 0; padding: 3px; font-size: 90%; width: 100%; border: 1px solid var(--wiki-content-border-color); box-sizing: border-box; } .navbox-inner, .navbox-subgroup { border-spacing: 0; width: 100%; } /* Reduce spacing between adjacent navboxes */ .navbox + .navbox { margin-top: -1px; } /* Spacing between rows */ .navbox-spacer { height: 2px; } /* Title bars and labels */ .navbox-title { font-weight: bold; font-size: 115%; padding: 0.25em 0.6em; line-height: 1.5em; color: var(--wiki-accent-label-color); background: var(--wiki-accent-color); } .navbox-title, .navbox-abovebelow { padding-left: 1em; padding-right: 1em; text-align: center; } .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: rgba(var(--wiki-accent-color--rgb), 0.18); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .navbox .navbox-title a, .navbox .navbox-title a:visited, .navbox .navbox-title a.external, .navbox .navbox-title a.external:visited { color: var(--wiki-accent-link-color); } .navbox-title .mw-collapsible-toggle { font-weight: normal; text-align: right; } .navbox-title-text { font-size: 105%; } /* Navbox-related links */ .navbox-title .navbar { float: left; margin-right: 0.5em; } .navbox-title .navbar a.external::after { content: unset; } /* Groups */ .navbox-group { font-weight: bold; padding: 0 0.5em; white-space: nowrap; text-align: center; } /* Zebra colouring for rows */ .navbox-even { background: #fff1; } /* Subgroups: equal group labels between different child navboxes */ .navbox-subgroup > tbody > tr { display: flex; } .navbox-subgroup .navbox-title { width: 100%; } .navbox-subgroup .navbox-group { display: flex; align-items: center; justify-content: center; flex-basis: 11em; flex-grow: 1; flex-shrink: 0; white-space: normal; } /* Lists */ .navbox-list { width: 100%; } /* Mobile adjustments */ @media screen and (max-width: 1280px) { .mw-body .navbox-inner table { display: table; } } @media screen and (max-width: 720px) { .mw-body .navbox { display: none; } } /********************** * End Template:Navbox * ***********************/ /******************* * Main page layout * ********************/ #mp-box-welcome {grid-area: welcome;} #mp-box-about {grid-area: about;} #mp-box-links {grid-area: links;} #mp-box-contribute {grid-area: contribute;} #mp-box-featured {grid-area: featured;} #mp-box-basics {grid-area: basics;} #mp-box-gallery {grid-area: gallery;} #mp-box-iconlists {grid-area: iconlists;} /* Example Main Page 1 Grid Layout */ #mp-layout1-container { display:grid; grid-template-areas: "welcome" "about" "featured" "basics" "gallery" "links" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout1-container { grid-template-areas: "welcome welcome" "about about" "featured basics" "gallery links" "contribute contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout1-container { grid-template-areas: "welcome welcome welcome" "about about basics" "featured featured basics" "gallery links links" "contribute contribute contribute"; grid-template-columns: 2fr 1fr 2fr; } } /* Example Main Page 2 Grid Layout */ #mp-layout2-container { display:grid; grid-template-areas: "welcome" "links" "about" "gallery" "iconlists" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout2-container { grid-template-areas: "welcome links" "gallery about" "iconlists about" "iconlists contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout2-container { grid-template-areas: "welcome welcome links" "welcome welcome about" "gallery gallery about" "iconlists iconlists contribute"; grid-template-columns: 3fr 2fr 2fr; } } /* Example Main Page 3 Grid Layout */ #mp-layout3-container { display:grid; grid-template-areas: "welcome" "about" "featured" "four" "priority" "projects" "wiki"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout3-container { grid-template-areas: "welcome welcome" "about about" "featured four" "priority projects" "wiki wiki"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout3-container { grid-template-areas: "welcome welcome welcome" "about about four" "featured featured four" "priority projects projects" "wiki wiki wiki"; grid-template-columns:2fr 1fr 2fr; } } .mp-box { display:flex; flex-flow:column nowrap; width: calc(100% - 2px); box-sizing: border-box; background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.25); border:1px solid var(--wiki-content-border-color); padding:0px; } .mp-body { height: 100%; display: flex; padding:0.5em; flex-flow: column nowrap; } .mp-box.centered-content .mp-body { height: 100%; display: flex; flex-flow: column nowrap; justify-content: space-evenly; } .mp-box.has-floating-image { display:block; } .mp-box.has-floating-image .mp-body { height:unset; display:block; } .mp-box h2 { text-align:center; font-weight:bold; font-family:var(--wiki-heading-font-family); overflow: initial; border-bottom: 1px solid var(--wiki-content-border-color); font-size: 150%; margin: 0; padding: 5px 0; color:var(--wiki-heading-color); } .mp-box .welcome-message { font-size: 200%; margin: 0; padding: 5px 0; color: #fff; filter: drop-shadow(0px 2px 3px #000); } #mp-banner-container { position: relative; } #mp-box-welcome { text-align:center; position:relative; overflow:hidden; } #mp-welcome { position: relative; height: 100%; font-family: var(--wiki-heading-font-family); z-index: 2; box-sizing: border-box; } #mp-welcome .welcome-subtitle { height: 100%; background:rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); padding:0.5em; } #mp-banner { position: absolute; top: 48px; width: 100%; height: 100%; filter: blur(5px); z-index: -1; background: url(/images/e/e0/MP_banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: top center; } .view-dark #mp-banner { filter: blur(5px) brightness(50%); } .view-light #mp-banner { filter: blur(5px) contrast(50%); } /* [[Template:MP_link]] */ .mp-links { --gap:10px; } .mp-links > ul { display: flex; flex-flow: row wrap; justify-content: space-evenly; margin: 2px; gap:var(--gap); } .mp-links > ul > li { display:flex; flex-flow:column nowrap; align-items:stretch; text-align: center; box-sizing:border-box; flex: max(calc(50% - var(--gap)), 5em) 1 1; outline:1px solid var(--wiki-content-link-color); transition:0.1s ease-in; } .mp-links > ul > li:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); } .mp-links.columns-1 > ul > li {flex: max(calc(100% - var(--gap)), 5em) 1 1;} .mp-links.columns-2 > ul > li {flex: max(calc(50% - var(--gap)), 5em) 1 1;} .mp-links.columns-3 > ul > li {flex: max(calc((100% / 3) - var(--gap)), 5em) 1 1;} .mp-links.columns-4 > ul > li {flex: max(calc(25% - var(--gap)), 5em) 1 1;} .mp-links.columns-5 > ul > li {flex: max(calc(20% - var(--gap)), 5em) 1 1;} .mp-links.columns-6 > ul > li {flex: max(calc((100% / 6) - var(--gap)), 5em) 1 1;} .mp-links.columns-7 > ul > li {flex: max(calc((100% / 7) - var(--gap)), 5em) 1 1;} .mp-links > ul > li:hover a { text-decoration: underline; } .mp-links > ul > li > a { display: flex; align-items: center; justify-content: center; height:100%; flex:1 1 auto; box-sizing:border-box; padding:5px; } .mp-links > ul > li > a:first-child { height:100%; } .mp-links > ul > li > a:last-child:not(:first-child) { height:unset; } .mp-links.stretch, .mp-links.stretch > ul { height:100%; } .mp-links.side-image li { flex-flow:row nowrap; } /* MP icon lists */ .mp-iconlists { display: flex; flex-flow: wrap; gap: 5px 20px; } .mp-iconlists > .mp-iconlist { flex: 1; min-width: fit-content; } .mp-iconlist > h3 { padding: 0; margin: 0; } .mp-iconlist > ul { list-style: none; margin: 0; } /* MP gallery */ .mp-box ul.gallery { display: flex; flex-flow: wrap; gap: 5px 10px; align-items: flex-end; justify-content: space-evenly; margin: 0; } .mp-box ul.gallery .gallerytext { margin-top: 1em; background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: inset 0 0 20px 2px #000; text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000; } /*********************** * End main page layout * ************************/ /*********************** * Start DRUID infoboxes * ************************/ .druid-container { /* These variables are designed to inherit from your wiki's color variables. If your wiki uses a different naming scheme, change the inner names to match yours. If your wiki doesn't use color variables you should consider doing so, otherwise you can replace the inner variables or the fallback values with colors that match your wiki. */ --druid-background-color: var(--wiki-content-background-color, #ffffff); --druid-background-color--rgb: var(--wiki-content-background-color--rgb, 255, 255, 255); --druid-secondary-background-color: var(--wiki-accent-color, #36c); --druid-secondary-background-color--rgb: var(--wiki-accent-color--rgb, 51, 102, 204); --druid-secondary-background-label-color: var(--wiki-accent-label-color, #fff); --druid-secondary-background-label-color--rgb: var(--wiki-accent-label-color--rgb, 255, 255, 255); --druid-tertiary-background-color: var(--wiki-content-background-color--secondary, #eaecf0); --druid-tertiary-background-color--rgb: var(--wiki-content-background-color--secondary--rgb, 234, 236, 240); --druid-border-color: var(--wiki-content-border-color, #a7d7f9); --druid-border-color--rgb: var(--wiki-content-border-color--rgb, 167, 215, 249); --druid-link-color: var(--wiki-content-link-color, #0645ad); --druid-link-color--rgb: var(--wiki-content-link-color--rgb, 6, 69, 173); --druid-link-label-color: var(--wiki-content-link-label-color, #fff); --druid-link-label-color--rgb: var(--wiki-content-link-label-color--rgb, 255, 255, 255); } .druid-container { border: 4px solid var(--druid-border-color); border-radius: 3px; background: var(--druid-background-color); float: right; clear: right; margin: 0 0 1em 1em; width: 16.875em; box-sizing: border-box; border-collapse: collapse; } div.druid-container { width: 22em; } @media screen and (max-width: 450px) { .druid-container { width:100%; } } @media screen and (max-width: 720px) { .druid-container { float: none; margin: 0.5rem auto; } } .druid-main-images-file, .druid-main-image { text-align:center; } .druid-infobox .druid-title, .druid-infobox .druid-section { background:var(--druid-secondary-background-color); color:var(--druid-secondary-background-label-color); text-align:center; font-size:1.5em; padding:1px; } .druid-section { font-size: 1.25em; font-weight: 500; } .druid-label { font-weight:bold; text-align: right; box-sizing: border-box; } .druid-row > .druid-label { width: 48%; } .druid-row > .druid-label, .druid-row > .druid-data { padding-inline: 0.3em; } .druid-main-image, .druid-main-images { padding:5px; } .druid-main-image img, .druid-main-images img { max-width:100%; height:auto; } .druid-main-images-labels { display:flex; flex-direction:row; flex-wrap:wrap; justify-content: space-evenly; margin:0.25em; gap:0.25em; } .druid-main-images-label { cursor:pointer; flex:1 1 auto; text-align:center; transition:.1s ease-in; outline:1px solid var(--druid-link-color); } .druid-main-images-label.focused { background:var(--druid-link-color); color:var(--druid-link-label-color); } .druid-main-images-label:not(.focused):hover { background:rgba(var(--druid-link-color--rgb), 0.25); } .druid-toggleable-data:not(.focused), .druid-main-images-file:not(.focused), .druid-toggleable-heading:not(.focused) { display:none; } .druid-row:not(:has(.druid-grid)):has(.druid-toggleable-data-empty.focused) { display:none; } .druid-section:has(.druid-toggleable-heading-empty.focused) { display:none; } .druid-grid { display:grid; gap: 0.3em; padding: 0.35em; } .druid-grid-item { background:var(--druid-tertiary-background-color); padding:0.25em; border:1px solid rgba(var(--druid-border-color--rgb), 0.5); border-radius: 2px; } .druid-grid-item > .druid-label, .druid-grid-item > .druid-data { text-align: center; } .druid-collapsed { display:none; } .druid-collapsible { cursor:pointer; position:relative; } .druid-collapsible::after { content:'–'; display:block; position:absolute; right:10px; font-size:20px; font-weight:bold; color:var(--druid-secondary-background-label-color); } .druid-collapsible-collapsed::after { content:'+'; } .druid-section-container:has(.druid-toggleable-data-empty.focused):not(:has(.druid-toggleable-data-nonempty.focused)):not(:has(.druid-data-nonempty)) { display: none; } /***************************************** Div support *****************************************/ div.druid-row { display:flex; margin-block: 1px; } div.druid-row + div.druid-row { margin-top: 0; } div.druid-row > .druid-label { background: var(--druid-tertiary-background-color); } .druid-infobox .druid-title { font-weight: 700; } .druid-infobox #toc { display:none; } /*********************** * End DRUID infoboxes * ************************/ /*** Miscellaneous ***/ .responsive-image { max-width:100%; height:auto; } .view-dark .invert-on-dark, .view-light .invert-on-light { filter:invert(100%); } @media screen and (min-width:720px) { .mobileonly { display:none; } } @media screen and (max-width:720px) { .nomobile { display:none; } } /************************** * Start Modular Templates * **************************/ /********* [[Template:Ambox]] *********/ .ambox { border: 1px solid var(--wiki-content-border-color); border-left: 10px solid var(--ambox-color); border-radius: 2px; display: flex; align-items: center; gap: .6em; margin: 1em 0; padding: 3px .6em; background-color: var(--wiki-content-background-color--secondary); box-shadow: 2px 2px 5px 0px #0002; } @media (min-width: 720px) { .ambox { margin-inline: 10%; } } .ambox.tiny { padding: .04rem .5em; margin-inline: 0; width: fit-content; } .ambox + .ambox { margin-top: -.6em; } .ambox-content p { margin: .15em 0; } .ambox-title { font-weight: bold; } /********* [[Template:Hatnote]] *********/ .hatnote { padding: 1px 0 1px 1.6em; margin-bottom: 0.5em; font-style: italic; border-top: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); border-bottom: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); } .hatnote.icon { padding-left: 0; } /********* [[Template:Spoiler]] *********/ .spoiler-content { background-color: rgb(127, 127, 127); transition: all 0.3s; cursor: pointer; } .spoiler-content > span { opacity: 0; transition: all 0.3s; } .spoiler-content > * { pointer-events:none; } .spoiler-content.show > * { pointer-events:unset; } .spoiler-content.show { background-color: rgba(127, 127, 127, 0); } .spoiler-content.show > span { opacity: 1; } /********* [[Template:Link icon]] *********/ .link-icon { display: inline-flex; align-items: center; height: var(--link-icon-line-height); vertical-align: bottom; } .link-icon .regular { align-self: center; } .link-icon .regular a { display: flex; } .link-icon .regular img { height: var(--link-icon-size); max-width: var(--link-icon-size); } .link-icon .fallback { outline: 1px solid var(--wiki-content-text-color); border-radius: 50%; text-align: center; width: var(--link-icon-size); line-height: var(--link-icon-size); } .link-icon.notext .fallback { display: inline-block; } .link-icon.notext { display: inline; } /********* [[Template:Quote]] *********/ .quote { background: var(--wiki-content-background-color--secondary); border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: .5em 0; padding: .5em; } .quote .block { display: block; } .quote .title { font-size: large; font-weight: bold; } .quote .content { font-style: italic; } .quote .author { font-weight: bold; text-align: end; } .quote .marks-wrapper { display: flex; gap: 5px; } .quote .marks-wrapper::before, .quote .marks-wrapper::after { font-size: 100px; line-height: 0px; } .quote .marks-wrapper::before { content: "“"; margin-top: 40px; } .quote .marks-wrapper::after { content: "”"; align-self: end; margin-bottom: -10px; } /************************ * End Modular Templates * *************************/ 167ceb8bee1739af4d66493eadb64c01f8ce3f5c 606 604 2024-05-29T12:45:35Z Geekette828 51691 css text/css /* CSS placed here will be applied to all skins */ :root, .view-light { --wiki-body-background-image: none; --wiki-body-background-color: #f6f6f6; --wiki-body-background-color--rgb: 246,246,246; --wiki-body-dynamic-color: #000000; --wiki-body-dynamic-color--rgb: 0,0,0; --wiki-body-dynamic-color--inverted: #ffffff; --wiki-body-dynamic-color--inverted--rgb: 255,255,255; --wiki-body-dynamic-color--secondary: #333333; --wiki-body-dynamic-color--secondary--rgb: 51,51,51; --wiki-body-dynamic-color--secondary--inverted: #dddddd; --wiki-body-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-body-font-family: sans-serif; --wiki-content-background-color: #ffffff; --wiki-content-background-color--rgb: 255, 255, 255; --wiki-content-background-opacity: 1; --wiki-content-background-color--secondary: #fbfbfb; --wiki-content-background-color--secondary--rgb: 251, 251, 251; --wiki-content-table-border-color:#ffffff; --wiki-content-border-color: #a7d7f9; --wiki-content-border-color--rgb: 167, 215, 249; --wiki-content-text-color: #111111; --wiki-content-text-color--rgb: 17, 17, 17; --wiki-content-link-color: #0645ad; --wiki-content-link-color--rgb: 6, 69, 173; --wiki-content-link-label-color: #ffffff; --wiki-content-link-label-color--rgb: 255,255,255; --wiki-content-link-color--visited: var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb: var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover: var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb: var(--wiki-content-link-color--rgb); --wiki-content-redlink-color: #ba0000; --wiki-content-redlink-color--rgb: 186,0,0; --wiki-content-text-mix-color: #8a8b8b; --wiki-content-text-mix-color--rgb: 138,139,139; --wiki-content-text-mix-color-95: #eef0f0; --wiki-content-text-mix-color-95--rgb: 238,240,240; --wiki-content-dynamic-color: #000000; --wiki-content-dynamic-color--rgb: 0,0,0; --wiki-content-dynamic-color--inverted: #ffffff; --wiki-content-dynamic-color--inverted--rgb: 255,255,255; --wiki-content-dynamic-color--secondary: #333333; --wiki-content-dynamic-color--secondary--rgb: 51,51,51; --wiki-content-dynamic-color--secondary--inverted: #dddddd; --wiki-content-dynamic-color--secondary--inverted--rgb: 221,221,221; --wiki-heading-color: var(--wiki-content-text-color); --wiki-heading-color--rgb: var(--wiki-content-text-color--rgb); --wiki-heading-font-family: 'Linux Libertine','Georgia','Times',serif; --wiki-accent-color: #3366cc; --wiki-accent-color--rgb: 51, 102, 204; --wiki-accent-color--hover: #447ff5; --wiki-accent-color--hover--rgb: 68, 127, 245; --wiki-accent-label-color: #ffffff; --wiki-accent-label-color--rgb: 255, 255, 255; --wiki-accent-link-color: #22214d; --wiki-accent-link-color--rgb: 34, 33, 77; --wiki-sidebar-background-color: var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity: 0.0; --wiki-sidebar-border-color: var(--wiki-body-background-color); --wiki-sidebar-border-color--rgb: var(--wiki-body-background-color--rgb); --wiki-sidebar-link-color: var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb: var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color: var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb: var(--wiki-heading-color--rgb); --wiki-navigation-background-color: var(--wiki-content-border-color); --wiki-navigation-background-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary: #e8f2f8; --wiki-navigation-background-color--secondary--rgb: 232, 242, 248; --wiki-navigation-border-color: var(--wiki-content-border-color); --wiki-navigation-border-color--rgb: var(--wiki-content-border-color--rgb); --wiki-navigation-text-color: var(--wiki-content-link-color); --wiki-navigation-text-color--rgb: var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color: var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb: var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color: var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb: var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color: var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb: var(--wiki-content-text-color--rgb); --wiki-alert-color: #bf0017; --wiki-alert-color--rgb: 191,0,23; --wiki-alert-label-color: #ffffff; --wiki-alert-label-color--rgb: 255, 255, 255; --wiki-warning-color: #cf721c; --wiki-warning-color--rgb: 207,114,28; --wiki-warning-label-color: #000000; --wiki-warning-label-color--rgb: 0, 0, 0; --wiki-success-color: #0c742f; --wiki-success-color--rgb: 12,116,47; --wiki-success-label-color: #ffffff; --wiki-success-label-color--rgb: 255, 255, 255; --wiki-icon-general-filter: ; --wiki-icon-to-link-filter: invert(20%) sepia(93%) saturate(2141%) hue-rotate(210deg) brightness(83%) contrast(103%); } .view-dark { --wiki-body-background-image:url(https://lkg.wiki.gg/images/0/0c/Background-dark.png); --wiki-body-background-color:#171717; --wiki-body-background-color--rgb:23,23,23; --wiki-body-dynamic-color:#ffffff; --wiki-body-dynamic-color--rgb:255,255,255; --wiki-body-dynamic-color--inverted:#000000; --wiki-body-dynamic-color--inverted--rgb:0,0,0; --wiki-body-dynamic-color--secondary:#dddddd; --wiki-body-dynamic-color--secondary--rgb:221,221,221; --wiki-body-dynamic-color--secondary--inverted:#333333; --wiki-body-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-body-font-family:sans-serif; --wiki-content-background-color:#101221; --wiki-content-background-color--rgb:18,18,33; --wiki-content-background-opacity:1.0; --wiki-content-background-color--secondary:#0d112a; --wiki-content-background-color--secondary--rgb:13,17,42; --wiki-content-table-border-color:#9a329e; --wiki-content-border-color:#9a329e; --wiki-content-border-color--rgb:153,26,81; --wiki-content-text-color:#e1fafe; --wiki-content-text-color--rgb:225,250,254; --wiki-content-link-color:#00dcff; --wiki-content-link-color--rgb:109,138,251; --wiki-content-link-label-color:#000; --wiki-content-link-label-color--rgb:0,0,0; --wiki-content-link-color--visited:var(--wiki-content-link-color); --wiki-content-link-color--visited--rgb:var(--wiki-content-link-color--rgb); --wiki-content-link-color--hover:var(--wiki-content-link-color); --wiki-content-link-color--hover--rgb:var(--wiki-content-link-color--rgb); --wiki-content-redlink-color:#FC3B2C; --wiki-content-redlink-color--rgb:252,59,44; --wiki-content-text-mix-color:#868686; --wiki-content-text-mix-color--rgb:134,134,134; --wiki-content-text-mix-color-95:#2a2a2a; --wiki-content-text-mix-color-95--rgb:42,42,42; --wiki-content-dynamic-color:#ffffff; --wiki-content-dynamic-color--rgb:255,255,255; --wiki-content-dynamic-color--inverted:#000000; --wiki-content-dynamic-color--inverted--rgb:0,0,0; --wiki-content-dynamic-color--secondary:#dddddd; --wiki-content-dynamic-color--secondary--rgb:221,221,221; --wiki-content-dynamic-color--secondary--inverted:#333333; --wiki-content-dynamic-color--secondary--inverted--rgb:51,51,51; --wiki-heading-color:var(--wiki-content-text-color); --wiki-heading-color--rgb:var(--wiki-content-text-color--rgb); --wiki-heading-font-family:'Linux Libertine','Georgia','Times',serif; --wiki-accent-color:#0053a8; --wiki-accent-color--rgb:255,25,128; --wiki-accent-color--hover:#00dcff; --wiki-accent-color--hover--rgb:216,32,115; --wiki-accent-label-color:#000; --wiki-accent-label-color--rgb:0,0,0; --wiki-accent-link-color:#22214d; --wiki-accent-link-color--rgb:34,33,77; --wiki-sidebar-background-color:var(--wiki-content-background-color); --wiki-sidebar-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-sidebar-background-opacity:var(--wiki-content-background-opacity); --wiki-sidebar-border-color:var(--wiki-content-border-color); --wiki-sidebar-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-sidebar-link-color:var(--wiki-content-link-color); --wiki-sidebar-link-color--rgb:var(--wiki-content-link-color--rgb); --wiki-sidebar-heading-color:var(--wiki-heading-color); --wiki-sidebar-heading-color--rgb:var(--wiki-heading-color--rgb); --wiki-navigation-background-color:var(--wiki-content-border-color); --wiki-navigation-background-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-background-color--secondary:var(--wiki-content-background-color--secondary); --wiki-navigation-background-color--secondary--rgb:var(--wiki-content-background-color--secondary--rgb); --wiki-navigation-border-color:var(--wiki-content-border-color); --wiki-navigation-border-color--rgb:var(--wiki-content-border-color--rgb); --wiki-navigation-text-color:var(--wiki-content-link-color); --wiki-navigation-text-color--rgb:var(--wiki-content-link-color--rgb); --wiki-navigation-selected-background-color:var(--wiki-content-background-color); --wiki-navigation-selected-background-color--rgb:var(--wiki-content-background-color--rgb); --wiki-navigation-selected-border-color:var(--wiki-navigation-border-color); --wiki-navigation-selected-border-color-rgb:var(--wiki-navigation-border-color--rgb); --wiki-navigation-selected-text-color:var(--wiki-content-text-color); --wiki-navigation-selected-text-color-rgb:var(--wiki-content-text-color--rgb); --wiki-alert-color:#ce0018; --wiki-alert-color--rgb:206,0,24; --wiki-alert-label-color:#000000; --wiki-alert-label-color--rgb:0,0,0; --wiki-warning-color:#cf721c; --wiki-warning-color--rgb:207,114,28; --wiki-warning-label-color:#000000; --wiki-warning-label-color--rgb:0,0,0; --wiki-success-color:#0c742f; --wiki-success-color--rgb:12,116,47; --wiki-success-label-color:#000000; --wiki-success-label-color--rgb:0,0,0; --wiki-icon-general-filter:invert(100%); --wiki-icon-to-link-filter:invert(60%) sepia(70%) saturate(3715%) hue-rotate(206deg) brightness(101%) contrast(97%); } /***************************** * PortableInfoboxes * ******************************/ :root { --pi-background: var(--wiki-content-background-color); --pi-secondary-background: var(--wiki-accent-color); --pi-secondary-background--rgb: var(--wiki-accent-color--rgb); --pi-secondary-background-label: var(--wiki-accent-label-color); --pi-border-color: rgba(var(--pi-secondary-background--rgb),0.5); } .portable-infobox .pi-title, .portable-infobox .pi-header { text-align:center; font-size:1.5em; background:rgba(var(--pi-secondary-background--rgb), 0.75); color:var(--pi-secondary-background-label); } .portable-infobox .pi-data { background:rgba(var(--pi-secondary-background--rgb), 0.18); } .portable-infobox .pi-image { padding: 8px; } .pi-image-thumbnail { max-width:100%; } .pi-section-navigation .pi-section-tab.pi-section-active, .pi-section-navigation .pi-section-tab.current, .pi-media-collection .pi-tab-link.current { background: var(--pi-secondary-background); color: var(--pi-secondary-background-label); } /* overqualify these to overwrite normal content heading styles */ .mw-body .portable-infobox h2, .mw-body .portable-infobox h3 { border-bottom: 0; font-family: inherit; font-weight: 700; margin: 0; } /***************************** * End PortableInfoboxes * ******************************/ /********************************************************************************************************************* * Semantically-correct horizontal lists (for Module:Navbox, and they're more machine-readable than {{*}}-formatting) * **********************************************************************************************************************/ .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } /* Display list items inline */ .hlist dd, .hlist dt, .hlist li { /* * don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again * We also want to reset margin-right in Minerva */ margin: 0; display: inline; } /* Display requested top-level lists inline */ .hlist.inline, .hlist.inline dl, .hlist.inline ol, .hlist.inline ul, /* Display nested lists inline */ .hlist dl dl, .hlist dl ol, .hlist dl ul, .hlist ol dl, .hlist ol ol, .hlist ol ul, .hlist ul dl, .hlist ul ol, .hlist ul ul { display: inline; } /* Hide empty list items */ .hlist .mw-empty-li { display: none; } /* TODO: :not() can maybe be used here to remove the later rule. naive test * seems to work. more testing needed. like so: */ .hlist dt:not(:last-child)::after { content: ": "; } .hlist dd:not(:last-child)::after, .hlist li:not(:last-child)::after { content: " · "; font-weight: bold; } /* Add parentheses around nested lists */ .hlist dd dd:first-child::before, .hlist dd dt:first-child::before, .hlist dd li:first-child::before, .hlist dt dd:first-child::before, .hlist dt dt:first-child::before, .hlist dt li:first-child::before, .hlist li dd:first-child::before, .hlist li dt:first-child::before, .hlist li li:first-child::before { content: " ("; font-weight: normal; } .hlist dd dd:last-child::after, .hlist dd dt:last-child::after, .hlist dd li:last-child::after, .hlist dt dd:last-child::after, .hlist dt dt:last-child::after, .hlist dt li:last-child::after, .hlist li dd:last-child::after, .hlist li dt:last-child::after, .hlist li li:last-child::after { content: ")"; font-weight: normal; } /* Put ordinals in front of ordered list items */ .hlist ol { counter-reset: listitem; } .hlist ol > li { counter-increment: listitem; } .hlist ol > li::before { content: " " counter(listitem) "\a0"; } .hlist dd ol > li:first-child::before, .hlist dt ol > li:first-child::before, .hlist li ol > li:first-child::before { content: " (" counter(listitem) "\a0"; } /******************************************** * End semantically-correct horizontal lists * *********************************************/ /********************************************************** * Template:Navbox (needs semantic horizontal lists above) * ***********************************************************/ .navbox { clear: both; margin: 1em 0; padding: 3px; font-size: 90%; width: 100%; border: 1px solid var(--wiki-content-border-color); box-sizing: border-box; } .navbox-inner, .navbox-subgroup { border-spacing: 0; width: 100%; } /* Reduce spacing between adjacent navboxes */ .navbox + .navbox { margin-top: -1px; } /* Spacing between rows */ .navbox-spacer { height: 2px; } /* Title bars and labels */ .navbox-title { font-weight: bold; font-size: 115%; padding: 0.25em 0.6em; line-height: 1.5em; color: var(--wiki-accent-label-color); background: var(--wiki-accent-color); } .navbox-title, .navbox-abovebelow { padding-left: 1em; padding-right: 1em; text-align: center; } .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { background: rgba(var(--wiki-accent-color--rgb), 0.18); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .navbox .navbox-title a, .navbox .navbox-title a:visited, .navbox .navbox-title a.external, .navbox .navbox-title a.external:visited { color: var(--wiki-accent-link-color); } .navbox-title .mw-collapsible-toggle { font-weight: normal; text-align: right; } .navbox-title-text { font-size: 105%; } /* Navbox-related links */ .navbox-title .navbar { float: left; margin-right: 0.5em; } .navbox-title .navbar a.external::after { content: unset; } /* Groups */ .navbox-group { font-weight: bold; padding: 0 0.5em; white-space: nowrap; text-align: center; } /* Zebra colouring for rows */ .navbox-even { background: #fff1; } /* Subgroups: equal group labels between different child navboxes */ .navbox-subgroup > tbody > tr { display: flex; } .navbox-subgroup .navbox-title { width: 100%; } .navbox-subgroup .navbox-group { display: flex; align-items: center; justify-content: center; flex-basis: 11em; flex-grow: 1; flex-shrink: 0; white-space: normal; } /* Lists */ .navbox-list { width: 100%; } /* Mobile adjustments */ @media screen and (max-width: 1280px) { .mw-body .navbox-inner table { display: table; } } @media screen and (max-width: 720px) { .mw-body .navbox { display: none; } } /********************** * End Template:Navbox * ***********************/ /******************* * Main page layout * ********************/ #mp-box-welcome {grid-area: welcome;} #mp-box-about {grid-area: about;} #mp-box-links {grid-area: links;} #mp-box-contribute {grid-area: contribute;} #mp-box-featured {grid-area: featured;} #mp-box-basics {grid-area: basics;} #mp-box-gallery {grid-area: gallery;} #mp-box-iconlists {grid-area: iconlists;} /* Example Main Page 1 Grid Layout */ #mp-layout1-container { display:grid; grid-template-areas: "welcome" "about" "featured" "basics" "gallery" "links" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout1-container { grid-template-areas: "welcome welcome" "about about" "featured basics" "gallery links" "contribute contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout1-container { grid-template-areas: "welcome welcome welcome" "about about basics" "featured featured basics" "gallery links links" "contribute contribute contribute"; grid-template-columns: 2fr 1fr 2fr; } } /* Example Main Page 2 Grid Layout */ #mp-layout2-container { display:grid; grid-template-areas: "welcome" "links" "about" "gallery" "iconlists" "contribute"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout2-container { grid-template-areas: "welcome links" "gallery about" "iconlists about" "iconlists contribute"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout2-container { grid-template-areas: "welcome welcome links" "welcome welcome about" "gallery gallery about" "iconlists iconlists contribute"; grid-template-columns: 3fr 2fr 2fr; } } /* Example Main Page 3 Grid Layout */ #mp-layout3-container { display:grid; grid-template-areas: "welcome" "about" "featured" "four" "priority" "projects" "wiki"; grid-template-columns:100%; gap:10px; } @media screen and (min-width:990px) { #mp-layout3-container { grid-template-areas: "welcome welcome" "about about" "featured four" "priority projects" "wiki wiki"; grid-template-columns:1fr 1fr; } } @media screen and (min-width:1350px) { #mp-layout3-container { grid-template-areas: "welcome welcome welcome" "about about four" "featured featured four" "priority projects projects" "wiki wiki wiki"; grid-template-columns:2fr 1fr 2fr; } } .mp-box { display:flex; flex-flow:column nowrap; width: calc(100% - 2px); box-sizing: border-box; background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.25); border:1px solid var(--wiki-content-border-color); padding:0px; } .mp-body { height: 100%; display: flex; padding:0.5em; flex-flow: column nowrap; } .mp-box.centered-content .mp-body { height: 100%; display: flex; flex-flow: column nowrap; justify-content: space-evenly; } .mp-box.has-floating-image { display:block; } .mp-box.has-floating-image .mp-body { height:unset; display:block; } .mp-box h2 { text-align:center; font-weight:bold; font-family:var(--wiki-heading-font-family); overflow: initial; border-bottom: 1px solid var(--wiki-content-border-color); font-size: 150%; margin: 0; padding: 5px 0; color:var(--wiki-heading-color); } .mp-box .welcome-message { font-size: 200%; margin: 0; padding: 5px 0; color: #fff; filter: drop-shadow(0px 2px 3px #000); } #mp-banner-container { position: relative; } #mp-box-welcome { text-align:center; position:relative; overflow:hidden; } #mp-welcome { position: relative; height: 100%; font-family: var(--wiki-heading-font-family); z-index: 2; box-sizing: border-box; } #mp-welcome .welcome-subtitle { height: 100%; background:rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); padding:0.5em; } #mp-banner { position: absolute; top: 48px; width: 100%; height: 100%; filter: blur(5px); z-index: -1; background: url(/images/e/e0/MP_banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: top center; } .view-dark #mp-banner { filter: blur(5px) brightness(50%); } .view-light #mp-banner { filter: blur(5px) contrast(50%); } /* [[Template:MP_link]] */ .mp-links { --gap:10px; } .mp-links > ul { display: flex; flex-flow: row wrap; justify-content: space-evenly; margin: 2px; gap:var(--gap); } .mp-links > ul > li { display:flex; flex-flow:column nowrap; align-items:stretch; text-align: center; box-sizing:border-box; flex: max(calc(50% - var(--gap)), 5em) 1 1; outline:1px solid var(--wiki-content-link-color); transition:0.1s ease-in; } .mp-links > ul > li:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); } .mp-links.columns-1 > ul > li {flex: max(calc(100% - var(--gap)), 5em) 1 1;} .mp-links.columns-2 > ul > li {flex: max(calc(50% - var(--gap)), 5em) 1 1;} .mp-links.columns-3 > ul > li {flex: max(calc((100% / 3) - var(--gap)), 5em) 1 1;} .mp-links.columns-4 > ul > li {flex: max(calc(25% - var(--gap)), 5em) 1 1;} .mp-links.columns-5 > ul > li {flex: max(calc(20% - var(--gap)), 5em) 1 1;} .mp-links.columns-6 > ul > li {flex: max(calc((100% / 6) - var(--gap)), 5em) 1 1;} .mp-links.columns-7 > ul > li {flex: max(calc((100% / 7) - var(--gap)), 5em) 1 1;} .mp-links > ul > li:hover a { text-decoration: underline; } .mp-links > ul > li > a { display: flex; align-items: center; justify-content: center; height:100%; flex:1 1 auto; box-sizing:border-box; padding:5px; } .mp-links > ul > li > a:first-child { height:100%; } .mp-links > ul > li > a:last-child:not(:first-child) { height:unset; } .mp-links.stretch, .mp-links.stretch > ul { height:100%; } .mp-links.side-image li { flex-flow:row nowrap; } /* MP icon lists */ .mp-iconlists { display: flex; flex-flow: wrap; gap: 5px 20px; } .mp-iconlists > .mp-iconlist { flex: 1; min-width: fit-content; } .mp-iconlist > h3 { padding: 0; margin: 0; } .mp-iconlist > ul { list-style: none; margin: 0; } /* MP gallery */ .mp-box ul.gallery { display: flex; flex-flow: wrap; gap: 5px 10px; align-items: flex-end; justify-content: space-evenly; margin: 0; } .mp-box ul.gallery .gallerytext { margin-top: 1em; background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: inset 0 0 20px 2px #000; text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000; } /*********************** * End main page layout * ************************/ /*********************** * Start DRUID infoboxes * ************************/ .druid-container { /* These variables are designed to inherit from your wiki's color variables. If your wiki uses a different naming scheme, change the inner names to match yours. If your wiki doesn't use color variables you should consider doing so, otherwise you can replace the inner variables or the fallback values with colors that match your wiki. */ --druid-background-color: var(--wiki-content-background-color, #ffffff); --druid-background-color--rgb: var(--wiki-content-background-color--rgb, 255, 255, 255); --druid-secondary-background-color: var(--wiki-accent-color, #36c); --druid-secondary-background-color--rgb: var(--wiki-accent-color--rgb, 51, 102, 204); --druid-secondary-background-label-color: var(--wiki-accent-label-color, #fff); --druid-secondary-background-label-color--rgb: var(--wiki-accent-label-color--rgb, 255, 255, 255); --druid-tertiary-background-color: var(--wiki-content-background-color--secondary, #eaecf0); --druid-tertiary-background-color--rgb: var(--wiki-content-background-color--secondary--rgb, 234, 236, 240); --druid-border-color: var(--wiki-accent-color, #a7d7f9); --druid-border-color--rgb: var(--wiki-accent-color--rgb, 167, 215, 249); --druid-link-color: var(--wiki-content-link-color, #0645ad); --druid-link-color--rgb: var(--wiki-content-link-color--rgb, 6, 69, 173); --druid-link-label-color: var(--wiki-content-link-label-color, #fff); --druid-link-label-color--rgb: var(--wiki-content-link-label-color--rgb, 255, 255, 255); } .druid-container { border: 4px solid var(--druid-border-color); border-radius: 3px; background: var(--druid-background-color); float: right; clear: right; margin: 0 0 1em 1em; width: 16.875em; box-sizing: border-box; border-collapse: collapse; } div.druid-container { width: 22em; } @media screen and (max-width: 450px) { .druid-container { width:100%; } } @media screen and (max-width: 720px) { .druid-container { float: none; margin: 0.5rem auto; } } .druid-main-images-file, .druid-main-image { text-align:center; } .druid-infobox .druid-title, .druid-infobox .druid-section { background:var(--druid-secondary-background-color); color:var(--druid-secondary-background-label-color); text-align:center; font-size:1.5em; padding:1px; } .druid-section { font-size: 1.25em; font-weight: 500; } .druid-label { font-weight:bold; text-align: right; box-sizing: border-box; } .druid-row > .druid-label { width: 48%; } .druid-row > .druid-label, .druid-row > .druid-data { padding-inline: 0.3em; } .druid-main-image, .druid-main-images { padding:5px; } .druid-main-image img, .druid-main-images img { max-width:100%; height:auto; } .druid-main-images-labels { display:flex; flex-direction:row; flex-wrap:wrap; justify-content: space-evenly; margin:0.25em; gap:0.25em; } .druid-main-images-label { cursor:pointer; flex:1 1 auto; text-align:center; transition:.1s ease-in; outline:1px solid var(--druid-link-color); } .druid-main-images-label.focused { background:var(--druid-link-color); color:var(--druid-link-label-color); } .druid-main-images-label:not(.focused):hover { background:rgba(var(--druid-link-color--rgb), 0.25); } .druid-toggleable-data:not(.focused), .druid-main-images-file:not(.focused), .druid-toggleable-heading:not(.focused) { display:none; } .druid-row:not(:has(.druid-grid)):has(.druid-toggleable-data-empty.focused) { display:none; } .druid-section:has(.druid-toggleable-heading-empty.focused) { display:none; } .druid-grid { display:grid; gap: 0.3em; padding: 0.35em; } .druid-grid-item { background:var(--druid-tertiary-background-color); padding:0.25em; border:1px solid rgba(var(--druid-border-color--rgb), 0.5); border-radius: 2px; } .druid-grid-item > .druid-label, .druid-grid-item > .druid-data { text-align: center; } .druid-collapsed { display:none; } .druid-collapsible { cursor:pointer; position:relative; } .druid-collapsible::after { content:'–'; display:block; position:absolute; right:10px; font-size:20px; font-weight:bold; color:var(--druid-secondary-background-label-color); } .druid-collapsible-collapsed::after { content:'+'; } .druid-section-container:has(.druid-toggleable-data-empty.focused):not(:has(.druid-toggleable-data-nonempty.focused)):not(:has(.druid-data-nonempty)) { display: none; } /***************************************** Div support *****************************************/ div.druid-row { display:flex; margin-block: 1px; } div.druid-row + div.druid-row { margin-top: 0; } div.druid-row > .druid-label { background: var(--druid-tertiary-background-color); } .druid-infobox .druid-title { font-weight: 700; } .druid-infobox #toc { display:none; } /*********************** * End DRUID infoboxes * ************************/ /*** Miscellaneous ***/ .responsive-image { max-width:100%; height:auto; } .view-dark .invert-on-dark, .view-light .invert-on-light { filter:invert(100%); } @media screen and (min-width:720px) { .mobileonly { display:none; } } @media screen and (max-width:720px) { .nomobile { display:none; } } /************************** * Start Modular Templates * **************************/ /********* [[Template:Ambox]] *********/ .ambox { border: 1px solid var(--wiki-content-border-color); border-left: 10px solid var(--ambox-color); border-radius: 2px; display: flex; align-items: center; gap: .6em; margin: 1em 0; padding: 3px .6em; background-color: var(--wiki-content-background-color--secondary); box-shadow: 2px 2px 5px 0px #0002; } @media (min-width: 720px) { .ambox { margin-inline: 10%; } } .ambox.tiny { padding: .04rem .5em; margin-inline: 0; width: fit-content; } .ambox + .ambox { margin-top: -.6em; } .ambox-content p { margin: .15em 0; } .ambox-title { font-weight: bold; } /********* [[Template:Hatnote]] *********/ .hatnote { padding: 1px 0 1px 1.6em; margin-bottom: 0.5em; font-style: italic; border-top: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); border-bottom: 1px solid var(--wiki-body-dynamic-color--secondary--inverted); } .hatnote.icon { padding-left: 0; } /********* [[Template:Spoiler]] *********/ .spoiler-content { background-color: rgb(127, 127, 127); transition: all 0.3s; cursor: pointer; } .spoiler-content > span { opacity: 0; transition: all 0.3s; } .spoiler-content > * { pointer-events:none; } .spoiler-content.show > * { pointer-events:unset; } .spoiler-content.show { background-color: rgba(127, 127, 127, 0); } .spoiler-content.show > span { opacity: 1; } /********* [[Template:Link icon]] *********/ .link-icon { display: inline-flex; align-items: center; height: var(--link-icon-line-height); vertical-align: bottom; } .link-icon .regular { align-self: center; } .link-icon .regular a { display: flex; } .link-icon .regular img { height: var(--link-icon-size); max-width: var(--link-icon-size); } .link-icon .fallback { outline: 1px solid var(--wiki-content-text-color); border-radius: 50%; text-align: center; width: var(--link-icon-size); line-height: var(--link-icon-size); } .link-icon.notext .fallback { display: inline-block; } .link-icon.notext { display: inline; } /********* [[Template:Quote]] *********/ .quote { background: var(--wiki-content-background-color--secondary); border-radius: 5px; border: 2px solid var(--wiki-content-border-color); margin: .5em 0; padding: .5em; } .quote .block { display: block; } .quote .title { font-size: large; font-weight: bold; } .quote .content { font-style: italic; } .quote .author { font-weight: bold; text-align: end; } .quote .marks-wrapper { display: flex; gap: 5px; } .quote .marks-wrapper::before, .quote .marks-wrapper::after { font-size: 100px; line-height: 0px; } .quote .marks-wrapper::before { content: "“"; margin-top: 40px; } .quote .marks-wrapper::after { content: "”"; align-self: end; margin-bottom: -10px; } /************************ * End Modular Templates * *************************/ a14cb91dea896342c852954fc4f940369fec5ab7 MediaWiki:Vector.css 8 21 596 22 2024-05-29T01:20:47Z Geekette828 51691 css text/css /* All CSS here will be loaded for users of the Vector skin */ /************************************ * Body, head, and general framework * *************************************/ body { background-image: var(--wiki-body-background-image); background-size:cover; background-position: bottom left; background-repeat: no-repeat; background-attachment: fixed; background-color: var(--wiki-body-background-color); font-family: var(--wiki-body-font-family); accent-color: var(--wiki-accent-color); } #mw-page-base { background:none; } /* let ul default to text that respects color */ ul { list-style-image: none; } /* override default wiki.gg table overflowing in favor of media queries (see bottom of sheet) */ table { display: table; white-space: unset; } /* Signal color scheme hints to browsers */ html.view-dark { color-scheme: dark } html.view-light { color-scheme: light } /************************ * End general framework * *************************/ /************** * Vector tabs * ***************/ .vector-menu-tabs-legacy li, #p-cactions { background-image: linear-gradient( to top, var(--wiki-navigation-background-color) 0, var(--wiki-navigation-background-color--secondary) 1px, var(--wiki-content-background-color) 100%); } #p-cactions { z-index: 5; } .vector-menu-dropdown { /* Matching a built-in rule for .vector-menu-tabs-legacy */ height: 2.5em; } .vector-menu-tabs-legacy li.selected { background: var(--wiki-navigation-selected-background-color); border-color: var(--wiki-navigation-selected-border-color); } .vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading{ background-image: linear-gradient(to bottom,transparent 0,var(--wiki-navigation-border-color) 100%); } .vector-menu-tabs li a, .vector-menu-tabs li.new a, .vector-menu-tabs li.new a:visited, .vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited, #mw-head .vector-menu-dropdown .vector-menu-heading { color: var(--wiki-navigation-text-color); } .vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited { color: var(--wiki-navigation-selected-text-color); } div.vectorMenu .mw-list-item a, .vector-menu-dropdown .mw-list-item.selected a, .vector-menu-dropdown .mw-list-item.selected a:visited { color: var(--wiki-content-link-color); } .vector-menu-dropdown .vector-menu-content { background: none; border: none; box-shadow:none; margin-top:-1px; } .vector-menu-dropdown .vector-menu-content-list { background-color: var(--wiki-content-background-color); border: 1px solid var(--wiki-content-border-color); } .vector-menu-dropdown .vector-menu-heading::after { filter: brightness(0) var(--wiki-icon-to-link-filter); } #p-search { z-index:2; } #p-search .searchButton { background-color:transparent; } /****************** * End vector tabs * *******************/ /******** * Links * *********/ a, .mw-parser-output a.external, .mw-parser-output a.extiw { color: var(--wiki-content-link-color); } a:visited, .mw-parser-output a.extiw:visited, .mw-parser-output a.external:visited { color: var(--wiki-content-link-color--visited); } a:not(.mw-selflink):hover, a:visited:hover, .mw-parser-output a.extiw:hover, .mw-parser-output a.extiw:visited:hover, .mw-parser-output a.external:hover, .mw-parser-output a.external:visited:hover { color:var(--wiki-content-link-color--hover); } a.new, a.new:visited, .mw-usertoollinks-contribs-no-edits { color:var(--wiki-content-redlink-color); } /* move external marker to an after so we can filter it to link color */ .mw-parser-output a.external { background:none; padding-right: 0; } .mw-parser-output a.external::after { display:inline-block; width:1em; height:1em; background-image: url(/skins/Vector/resources/common/images/link-external-small-ltr-progressive.svg?14604); background-position: center right; background-repeat: no-repeat; background-size: 0.857em; content:''; filter:brightness(0) var(--wiki-icon-to-link-filter); vertical-align: text-top; } a.extiw[title^="wikipedia:"]::after { display:inline-block; height:1em; width:1em; margin-left:1px; background-image:url(https://commons.wiki.gg/images/2/28/Wikipedia.svg); background-size:0.857em; background-repeat:no-repeat; background-position:center right; content:''; vertical-align: text-top; } a.extiw[title^="mw:"]::after { display:inline-block; height:1em; width:1em; margin-left:1px; background-image:url(https://commons.wiki.gg/images/9/9b/MediaWiki.svg); background-size:0.857em; background-repeat:no-repeat; background-position:center right; content:''; vertical-align: text-top; } /************ * End links * *************/ /*************** * Left Sidebar * ****************/ #mw-panel .vector-menu-portal { background-color: rgba(var(--wiki-sidebar-background-color--rgb), var(--wiki-sidebar-background-opacity)); border:1px solid var(--wiki-sidebar-border-color); } @media screen and (max-width: 720px) { #mw-panel .vector-menu-portal { background-color: var(--wiki-sidebar-background-color); } } #mw-panel .vector-menu-portal + .vector-menu-portal { border-top: 0; } #mw-panel .vector-menu-portal:last-child { margin-bottom:0; } .vector-menu-portal .vector-menu-content .mw-list-item a, .vector-menu-portal .vector-menu-content .mw-list-item a:visited { color: var(--wiki-sidebar-link-color); } .vector-menu-portal .vector-menu-heading { background: none; color: var(--wiki-sidebar-heading-color); font-family:var(--wiki-heading-font-family); } #t-newpage { --sidebar-icon:url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 384 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-upload { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 512 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-print { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 512 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-whatlinkshere { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 640 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-specialpages { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 576 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-specialpages > a::before, #t-whatlinkshere > a::before, #t-print > a::before, #t-newpage > a::before, #t-upload > a::before { content:''; background-image:var(--sidebar-icon); background-size:contain; background-repeat:no-repeat; background-position:center; display:inline-block; width:15px; height:15px } .view-dark #p-tb .mw-list-item > a::before { filter:var(--wiki-icon-to-link-filter) } #p-tb .mw-list-item > a { display:flex; align-items:center; gap:3px } #p-tb .vector-menu-content-list { display:flex; flex-direction:column; } /******************* * End left sidebar * ********************/ /******* * Logo * ********/ /* [[File:Site-logo.png]] */ .mw-wiki-logo { background-size: contain; } /*********** * End logo * ************/ /*************** * Content area * ****************/ .mw-body, .parsoid-body, .mw-footer { color: var(--wiki-content-text-color); background-color: rgba(var(--wiki-content-background-color--rgb), var(--wiki-content-background-opacity)); border: 1px solid var(--wiki-content-border-color); margin-right: 1em; } .mw-footer { border-top:none; } .mw-footer li { color: var(--wiki-content-text-color); } @media screen and (max-width: 981px) { .mw-body, .parsoid-body, .mw-footer { margin-right: 0; } } /******************************* * End content area and footer * *******************************/ /*********************************** * wiki.gg network elements tuning * *********************************/ #wikigg-footer { position: sticky; top: 100%; margin-top: 0.5rem; clear: both; } /** * Only clear right side in the MW footer to prevent icon overflow. This is accompanied by * the full clear on netfooter to stop the sidebar from offsetting it. */ .mw-footer > div[style^="clear"]:last-child { clear: right !important; } /*************************************** * End wiki.gg network elements tuning * *************************************/ /*********** * Headings * ************/ .mw-body h1, .mw-body h2 { border-bottom: 1px solid var(--wiki-content-border-color); } .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6 { color: var(--wiki-heading-color); font-family:var(--wiki-heading-font-family); } /*************** * End headings * ****************/ /************* * lkg-tables * **************/ .lkg-table { border-collapse: separate; border-spacing: 0; background: var(--theme-table-td-background); border: 1px solid var(--wiki-content-border-color); } .lkg-table th { background: var(--wiki-content-border-color); color: var(--wiki-accent-label-color); padding: 8px; } .lkg-table tr td, .lkg-table tr { border-bottom: 1px solid var(--wiki-content-border-color); padding: 6px; } .lkg-table tr:last-child td { border-bottom: none; } /*************** * General classes for table size * ****************/ .tablexsmall {width: 30%;} .tablesmall {width: 45%;} .tablemedium {width: calc(100% - 300px);} .tablelarge {width: 99%;} .tablemax30 {max-width: 30%;} .tablemax45 {max-width: 45%;} .tablemax50 {max-width: 50%;} .tablemaxmedium {max-width: calc(100% - 300px);} /************* * Wikitables * **************/ .wikitable { background: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .wikitable>tr>th, .wikitable>*>tr>th { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .wikitable>tr>td, .wikitable>*>tr>td { border: 1px solid var(--wiki-content-border-color); } /* Forward = yes bg on Special:Interwiki */ table.mw-interwikitable.body td.mw-interwikitable-local-yes { background: rgba(var(--wiki-content-link-color--rgb), .1); } .zebra-table > * > tr:nth-of-type(2n), .zebra-table > tr:nth-of-type(2n) { background:rgba(var(--wiki-content-dynamic-color--secondary--rgb), 0.05); } .view-dark .client-js .sortable:not(.jquery-tablesorter) > * > tr:first-child > th:not(.unsortable), .view-dark .jquery-tablesorter th.headerSort { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%229%22 viewBox=%220 0 21 9%22%3E %3Cpath d=%22m14.5 5-4 4-4-4zm0-1-4-4-4 4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } .view-dark .jquery-tablesorter th.headerSortUp { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%224%22 viewBox=%220 0 21 4%22%3E %3Cpath d=%22m6.5 4 4-4 4 4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } .view-dark .jquery-tablesorter th.headerSortDown { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%224%22 viewBox=%220 0 21 4%22%3E %3Cpath d=%22m14.5 0-4 4-4-4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } /***************** * End wikitables * ******************/ /************** * Preferences * ***************/ .mw-prefs-tabs-wrapper.oo-ui-panelLayout-framed, .mw-prefs-tabs>.oo-ui-menuLayout-content>.oo-ui-indexLayout-stackLayout>.oo-ui-tabPanelLayout { border: none; } .oo-ui-tabSelectWidget-framed { background-color: transparent; border-bottom: 1px solid var(--wiki-content-link-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled, .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { color: var(--wiki-content-text-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected, .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget-selected:hover { background-color: var(--wiki-content-link-color); color: var(--wiki-content-link-label-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected .oo-ui-labelElement-label { border-bottom: none; } .mw-prefs-buttons { background-color: var(--wiki-content-background-color); border-top: 1px solid var(--wiki-content-link-color); } .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled, .oo-ui-textInputWidget .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input[readonly]:not(.oo-ui-pendingElement-pending) { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color) } .oo-ui-pendingElement-pending { background-color: var(--wiki-content-background-color--secondary); background-image: linear-gradient(135deg,var(--wiki-content-background-color) 25%,transparent 25%,transparent 50%,var(--wiki-content-background-color) 50%,var(--wiki-content-background-color) 75%,transparent 75%,transparent); } .oo-ui-dropdownInputWidget.oo-ui-widget-enabled select { color: var(--wiki-content-text-color); } .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:hover, .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:focus, .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:active, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:hover, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:focus, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:active, .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input:focus, .oo-ui-textInputWidget.oo-ui-widget-enabled:active .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input:focus { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } .oo-ui-menuOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget { color: Var(--wiki-content-text-color); } .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-selected, .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-highlighted, .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-highlighted.oo-ui-optionWidget-selected, .oo-ui-dropdownWidget.oo-ui-widget-enabled.oo-ui-dropdownWidget-open .oo-ui-dropdownWidget-handle { background-color: rgba(var(--wiki-content-link-color--rgb), 0.15); color: var(--wiki-content-link-color); } /**************** * End preferences * *****************/ /*************** * Page history * ****************/ #pagehistory li { background-color: transparent; border: none; } #pagehistory li.selected { background-color: var(--wiki-content-background-color--secondary); border: 1px dashed var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .diff td.diff-addedline { background-color: var(--wiki-content-background-color); border-color: var(--wiki-success-color); border-width: 1px 1px 1px 4px; } .diff td.diff-addedline .diffchange { background-color: var(--wiki-success-color); color: var(--wiki-success-label-color); } .diff td.diff-deletedline { background-color: var(--wiki-content-background-color); border-color: var(--wiki-alert-color); border-width: 1px 1px 1px 4px; } .diff td.diff-deletedline .diffchange { background-color: var(--wiki-alert-color); color: var(--wiki-alert-label-color) } .diff td.diff-context { background: transparent; border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .diff-marker a.mw-diff-movedpara-right { color: transparent; } .diff-marker a.mw-diff-movedpara-right:hover:after { opacity: .75; } .diff-marker a.mw-diff-movedpara-right:after { color: var(--wiki-content-text-color); content: "\21a9"; } .diff-marker a.mw-diff-movedpara-left { color: transparent; } .diff-marker a.mw-diff-movedpara-left:hover:after { opacity: .75; } .diff-marker a.mw-diff-movedpara-left:after { color: var(--wiki-content-text-color); content: "\21aa"; } .mw-plusminus-neg { color:var(--wiki-alert-color); } .mw-plusminus-pos { color:var(--wiki-success-color); } /******************* * End page history * ********************/ /******************** * Table of contents * *********************/ #toc, .toc, .toccolours, .mw-warning { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: 0 0.1em 0.2em #000000; } .toctogglelabel { color: var(--wiki-content-link-color); } .tocnumber { color: var(--wiki-content-text-color); } /************************ * End table of contents * *************************/ /************* * Thumbnails * **************/ div.thumb { border: 1px solid var(--wiki-content-border-color); margin: 2px; margin-left: 6px; } img.thumbborder { border: 1px solid var(--wiki-content-border-color); padding: 5px; } div.thumbinner { background-color: rgba(255, 255, 255, .2); } li.gallerybox div.thumb { background-color: rgba(255, 255, 255, .2); border: 1px solid var(--wiki-content-border-color); } html .thumbimage { border: 1px solid var(--wiki-content-border-color); } .thumb, .thumb .thumbinner, .thumb .thumbimage { max-width: 100%; box-sizing: border-box; } .thumb .thumbimage { height: auto; } /* packed-overlay mode for galleries */ ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper { background: rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.8); } /* Responsive floating thumbnails */ @media screen and (max-width: 720px) { div.tright { float: none; margin: 0 auto; width: max-content; } } /***************** * End thumbnails * ******************/ /************** * Wiki editor * ***************/ #wpTextbox0 { /* need !important here to override inline styling */ background-color:var(--wiki-content-background-color) !important; } .wikiEditor-ui { border: none; } .wikiEditor-ui .wikiEditor-ui-top, .wikiEditor-ui .wikiEditor-ui-view { border-color:var(--wiki-content-border-color); } .wikiEditor-ui-toolbar { background: var(--wiki-content-background-color--secondary); } .wikiEditor-ui-toolbar .group, .wikiEditor-ui-toolbar .section-secondary .group { border-color:var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .tabs span.tab a, .wikiEditor-ui-toolbar .tabs span.tab a:visited, .wikiEditor-ui-toolbar .tabs span.tab a.current, .wiikiEditor-ui-toolbar .tabs span.tab a.current:visited, .wikiEditor-ui-toolbar .booklet .index .current { color: var(--wiki-content-link-color); } .wikiEditor-ui-toolbar .group .tool-select .options { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .group .tool-select .options .option { color: var(--wiki-content-text-color); } .wikiEditor-ui-toolbar .group .tool-select .menu .options .option:hover { background-color: var(--wiki-content-background-color); } .wikiEditor-ui-toolbar .tabs span.tab a::before, .wikiEditor-ui-toolbar .group .tool-select .label::after { filter: var(--wiki-icon-general-filter); } .wikiEditor-ui-toolbar .group .label, .wikiEditor-ui-toolbar .group .tool-select .label, .wikiEditor-ui-toolbar .page-table th, .wikiEditor-ui-toolbar .page-table td, .wikiEditor-ui-toolbar .page-characters div span, .wikiEditor-ui-toolbar .booklet .index div { color: var(--wiki-content-text-color); } .wikiEditor-ui-toolbar .booklet>.index> :hover { background-color: var(--wiki-content-background-color--secondary); } .wikiEditor-ui-toolbar .sections .section { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); border-top: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .page-characters div span { border: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .booklet .pages { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .wikiEditor-ui-toolbar .booklet .index .current { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .wikiEditor-ui-toolbar .page-characters div span:hover { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); border-color: var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .page-table td { border-top: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-tabs div a { background: #9A647F; display: inline-block; } .wikiEditor-ui-tabs div.current { border-bottom: 1px solid #3B3352; } .wikiEditor-ui-tabs div.current a { font-weight: bold; } .wikiEditor-ui-tabs { border-left: 1px solid #3B3352; border-top: 1px solid #3B3352; } .wikiEditor-preview-contents { background: transparent; background-color: rgba(255, 255, 255, 0.2); border-color: #3B3352; border-style: solid; border-width: 0 1px 1px; } .wikiEditor-ui-controls { background: transparent; } .wikiEditor-preview-contents, .wikiEditor-preview-loading { background-color: transparent; } .editOptions { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); border-image: none; border-radius: 0 0 5px 5px; border-style: none solid solid; border-width: medium 1px 1px; } input#wpSummary { margin-bottom: 1em; margin-top: 1em; width: 80%; } .view-dark .ace_editor, .ace_editor { --ace-keywords: #CDA869; --ace-regexp: #E9C062; --ace-constants: #CF6A4C; --ace-illegal: #F8F8F8; --ace-deprecated: #D2A8A1; --ace-support: #9B859D; --ace-function: #DAD085; --ace-list: #F9EE98; --ace-variable: #7587A6; --ace-string: #8F9D6A; --ace-illegal-highlight: rgba(86, 45, 86, 0.75); --ace-step-highlight: #665200; --ace-multiselect-shadow: #141414; } .theme-light .ace_editor{ --ace-keywords: #00f; --ace-regexp: #036a07; --ace-constants: #c5060b; --ace-illegal: #f00; --ace-deprecated: #f00; --ace-support: #6d79de; --ace-function: #3c4c72; --ace-list: #b90690; --ace-variable: #318495; --ace-string: #036a07; --ace-illegal-highlight: rgba(255, 0, 0, 0.1); --ace-step-highlight: #fcff00; --ace-multiselect-shadow: #fff; } .ace_editor .ace_gutter { background: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); } .ace_gutter-cell { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.4); } .ace_editor .ace_print-margin { width: 1px; background: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.75); } .ace_editor { /* this image gradient hack effectively lets the element have 2 layers of background */ background-image:linear-gradient(var(--wiki-content-dynamic-color), var(--wiki-content-dynamic-color)); background-color:rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.93); color: rgba(var(--wiki-content-dynamic-color--rgb), 0.93); } .ace_editor .ace_cursor { color: var(--wiki-content-text-color); } .ace_editor .ace_marker-layer .ace_selection { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.20) } .ace_editor.ace_multiselect .ace_selection.ace_start { box-shadow: 0 0 3px 0px var(--ace-multiselect-shadow); } .ace_editor .ace_marker-layer .ace_step { background: var(--ace-step-highlight); } .ace_editor .ace_marker-layer .ace_active-line { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.031) } .ace_editor .ace_gutter-active-line { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.031) } .ace-tm .ace_marker-layer .ace_selected-word { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .ace_editor .ace_marker-layer .ace_selection { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); } .ace_editor .ace_marker-layer .ace_selected-word { border: 1px solid rgba(var(--wiki-content-dynamic-color--rgb), 0.20) } .ace_editor .ace_invisible { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.25) } .ace_editor .ace_keyword, .ace_editor .ace_meta { color: var(--ace-keywords); } .ace_editor .ace_constant, .ace_editor .ace_constant.ace_numeric, .ace_editor .ace_constant.ace_character, .ace_editor .ace_constant.ace_character.ace_escape, .ace_editor .ace_constant.ace_other, .ace_editor .ace_heading, .ace_editor .ace_markup.ace_heading, .ace_editor .ace_support.ace_constant { color: var(--ace-constants); } .ace_editor .ace_invalid.ace_illegal { color: var(--ace-illegal); background-color: var(--ace-illegal-highlight); } .ace_editor .ace_invalid.ace_deprecated { text-decoration: underline; font-style: italic; color: var(--ace-deprecated); } .ace_editor .ace_support, .ace_editor .ace_support.ace_type { color: var(--ace-support); } .ace_editor .ace_fold { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); border-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); } .ace_editor .ace_support.ace_function { color: var(--ace-function); } .ace_editor .ace_list, .ace_editor .ace_markup.ace_list, .ace_editor .ace_storage { color: var(--ace-list); } .ace_editor .ace_entity.ace_name.ace_function, .ace_editor .ace_meta.ace_tag, .ace_editor .ace_variable { color: var(--ace-variable); } .ace_editor .ace_string { color: var(--ace-string); } .ace_editor .ace_string.ace_regexp { color: var(--ace-regexp); } .ace_editor .ace_comment { font-style: italic; color: rgba(var(--wiki-content-dynamic-color--rgb), 0.3); } .ace_editor .ace_xml-pe { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.28); } .ace_editor .ace_indent-guide { background:none; border-right:1px solid rgba(var(--wiki-content-dynamic-color--rgb), 0.2); } .ace_search { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .ace_search_field { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-mix-color); } .ace_button { color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .ace_button:hover { background-color: var(--wiki-accent-color--hover); color: var(--wiki-accent-label-color); } .ace_button.checked { background-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .ace_searchbtn { background-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); border: 1px solid var(--wiki-content-border-color); } .ace_searchbtn:hover { background-color: var(--wiki-accent-color--hover); color: var(--wiki-accent-label-color); } .ace_searchbtn.prev::after, .ace_searchbtn.next::after { border-color: var(--wiki-accent-label-color); } .ace_searchbtn_close { filter: var(--wiki-icon-general-filter); } .wikiEditor-ui .codeEditor-status { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-editform #wpTextbox1 { background: rgba(var(--wiki-content-background-color--rgb), 0.5); color: var(--wiki-content-text-color); } .view-dark .CodeMirror, .CodeMirror { --codemirror-yellow: #ffd700; --codemirror-light-blue: #adf; --codemirror-blue: #08f; --codemirror-green: #290; --codemirror-red: #f50; --codemirror-dark-red: #dd1616; --codemirror-purple: #CD4EF9; --codemirror-pink: #e0e; --codemirror-light-gray: #eee; --codemirror-gray: #84a0a0; } .theme-light .CodeMirror { --codemirror-yellow: #9e8500; --codemirror-light-blue: #008ae7; --codemirror-blue: #0085f9; --codemirror-green: #290; --codemirror-red: #ef4f00; --codemirror-dark-red: #a11; --codemirror-purple: #80c; --codemirror-pink: #ed00ed; --codemirror-light-gray: #858585; --codemirror-gray: #6b8a8a; } .CodeMirror { background-color: var(--wiki-content-background-color); color: var(--wiki-content-text-color) } .CodeMirror .CodeMirror-line::selection, .CodeMirror .CodeMirror-line>span::selection, .CodeMirror .CodeMirror-line>span>span::selection, .CodeMirror .CodeMirror-line::-moz-selection, .CodeMirror .CodeMirror-line>span::-moz-selection, .CodeMirror .CodeMirror-line>span>span::-moz-selection, .CodeMirror .CodeMirror-selected { background: rgba(var(--wiki-content-link-color--rgb), .3); } .CodeMirror-linenumber { color: rgba(var(--wiki-content-text-color--rgb), .6) } .CodeMirror div.CodeMirror-cursor { border-left: 1px solid var(--wiki-content-text-color); } .cm-keyword { color: var(--codemirror-purple) } .cm-def { color: var(--codemirror-blue) } .cm-comment { color: var(--codemirror-yellow) } .cm-variable-2 { color: var(--codemirror-light-blue) } .cm-string { color: var(--codemirror-red) } .cm-atom { color: var(--codemirror-pink) } .cm-number { color: var(--codemirror-green) } .CodeMirror-gutters { background-color: var(--wiki-content-background-color--secondary); border-right-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color) } .cm-mw-matching { background-color: var(--codemirror-yellow) } .cm-mw-skipformatting { background-color: var(--codemirror-light-blue) } .cm-mw-list { color: var(--codemirror-blue) } .cm-mw-doubleUnderscore, .cm-mw-hr, .cm-mw-signature { background-color: var(--wiki-content-background-color--secondary); color: var(--codemirror-blue) } .cm-mw-indenting { color: var(--codemirror-blue) } .cm-mw-mnemonic { color: var(--codemirror-green) } .cm-mw-comment { color: var(--codemirror-gray) } .cm-mw-apostrophes-bold, .cm-mw-apostrophes-italic, .cm-mw-section-header { color: var(--codemirror-blue) } .cm-mw-template, .cm-mw-template-argument-name, .cm-mw-template-bracket, .cm-mw-template-delimiter, .cm-mw-template-name { color: var(--codemirror-purple); } .cm-mw-templatevariable, .cm-mw-templatevariable-bracket, .cm-mw-templatevariable-delimiter, .cm-mw-templatevariable-name { color: var(--codemirror-red) } .cm-mw-parserfunction-bracket, .cm-mw-parserfunction-delimiter, .cm-mw-parserfunction-name { color: var(--codemirror-dark-red) } .cm-mw-exttag-attribute, .cm-mw-exttag-bracket, .cm-mw-exttag-name, .cm-mw-htmltag-attribute, .cm-mw-htmltag-bracket, .cm-mw-htmltag-name { color: var(--codemirror-green) } .cm-mw-link, .cm-mw-link-pagename { color: var(--wiki-content-link-color) } .cm-mw-link-tosection { color: var(--codemirror-blue) } .cm-mw-extlink, .cm-mw-extlink-bracket, .cm-mw-extlink-protocol, .cm-mw-free-extlink, .cm-mw-free-extlink-protocol, .cm-mw-link-bracket, .cm-mw-link-delimiter { color: var(--wiki-content-link-color) } .cm-mw-table-bracket, .cm-mw-table-definition, .cm-mw-table-delimiter { color: var(--codemirror-pink) } .cm-mw-matchingbracket { background-color: var(--wiki-content-background-color--secondary); box-shadow: inset 0 0 1px 1px var(--wiki-content-link-color); font-weight: bold; } /* VisualEditor: Fix broken toolbar layout */ .oo-ui-toolbar { clear: none; } .ve-init-mw-desktopArticleTarget-toolbar-open > .oo-ui-toolbar-bar > div:nth-child(4) { display: none; } .ve-ui-toolbar-floating > .oo-ui-toolbar-bar { top: 35px; } /************* * End editor * **************/ /**************** * Tabber styles * *****************/ .tabber__tab, .tabber__tab:visited { color:var(--wiki-content-link-color); } .tabber__tab:hover, .tabber__tab:hover:visited, .tabber__tab[aria-selected="true"], .tabber__tab[aria-selected="true"]:visited { color: var(--wiki-content-text-color); } .tabber__indicator { background: var(--wiki-content-link-color); } .tabber__header__prev::after, .tabber__header__next::after { filter: var(--wiki-icon-general-filter); } /******************** * End Tabber styles * *********************/ /*************************************** * Various fixes for multi-theme Vector * ****************************************/ .oo-ui-iconElement-icon { filter: var(--wiki-icon-to-link-filter); } .oo-ui-iconElement-icon.oo-ui-icon-reload { filter: brightness(0) var(--wiki-icon-to-link-filter); } fieldset { border-color:var(--wiki-content-border-color); } hr { background-color:var(--wiki-content-border-color); } .CategoryTreeToggle { color:var(--wiki-content-link-color); } input, select { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } input:hover, input:focus, input:active { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } input:focus-visible { outline: 1px solid var(--wiki-content-link-color); } input::file-selector-button, input[type="button"], input[type="submit"] { background-color:var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .vector-body blockquote { border-color:var(--wiki-content-border-color); } ol.references li:target, sup.reference:target { background-color: rgba(var(--wiki-content-link-color--rgb), .1); } /* category bar and filetoc */ .catlinks, ul#filetoc { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } /**/ body .ui-dialog .ui-widget-header { /* we need an important here because the built-in styles have one :( */ background: var(--wiki-content-background-color) !important; border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .ui-widget-header .ui-dialog-titlebar-close .ui-icon-closethick { filter: var(--wiki-icon-general-filter); } .ui-widget-header .ui-dialog-titlebar-close.ui-state-hover { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .ui-widget-content { background: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } body .ui-button { /* we need an important here because the built-in styles have one. Vector is a mess */ background: var(--wiki-accent-color) !important; border-color: var(--wiki-accent-color) !important; color: var(--wiki-accent-label-color); } body .ui-button:hover, body .ui-button:focus, body .ui-button:active { /* we need an important here because we had to use some above */ background: var(--wiki-accent-color--hover) !important; border-color: var(--wiki-accent-color--hover) !important; color: var(--wiki-accent-label-color); } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { color: var(--wiki-accent-label-color); } #contentSub, #contentSub2 { color:var(--wiki-content-text-mix-color); } /* arrow on redirect pages */ .mw-content-ltr .redirectText li:first-child { padding-left:0; background:none; } .mw-content-ltr .redirectText li:first-child::before { content:''; display:inline-block; width:47px; height:1em; vertical-align: middle; background-image:linear-gradient(transparent,transparent),url(/resources/src/mediawiki.action/images/redirect-ltr.svg?ff441); filter:var(--wiki-icon-general-filter); } /* notifications ("your edit was saved", etc.) */ .mw-notification { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); } .mw-notification .oo-ui-labelElement-label { color:var(--wiki-content-text-color); } .mw-notification .oo-ui-iconElement-icon { filter:unset; } /**/ .mime-type.has-warning { color:var(--wiki-content-text-color); } .oo-ui-image-warning.oo-ui-icon-alert, .mw-ui-icon-alert-warning::before { filter:drop-shadow(0 0 3px #000); } .mw_metadata td, .mw_metadata th { border-color: var(--wiki-content-border-color); } .mw_metadata th { background-color: var(--wiki-content-background-color--secondary); } .mw_metadata td { background-color: var(--wiki-content-background-color); } .mw-datatable td, .mw-datatable th { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); } #mw-allmessagestable tbody:hover td, .mw-datatable tr:hover>td { background-color: var(--wiki-content-background-color--secondary); } #mw-allmessagestable .am_default { background-color: rgba(var(--wiki-accent-color--rgb), .8); color: var(--wiki-accent-label-color); } #mw-allmessagestable .am_actual, #mw-allmessagestable tbody:hover .am_default { background-color: rgba(var(--wiki-accent-color--rgb), .6); } #mw-allmessagestable .am_actual { color: var(--wiki-accent-label-color); } #mw-allmessagestable tbody:hover .am_actual { background-color: rgba(var(--wiki-accent-color--rgb), .5); } .mw-datatable, .mw-json { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: inherit; } .mw-datatable>*>tr>th, .mw-datatable>tr>th, .mw-json>*>tr>th, .mw-json>tr>th { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); padding-bottom: 9px; padding-top: 9px; } .mw-datatable>*>tr>td, .mw-datatable>tr>td, .mw-json>*>tr>td, .mw-json>tr>td { border-color: var(--wiki-content-border-color); } .mw-json tr { background-color: inherit; } .mw-json .mw-json-single-value, .mw-json .mw-json-value, .mw-json .value { background: rgba(var(--wiki-success-color--rgb), .6); } .mw-json .mw-json-empty { background: var(--wiki-content-background-color--secondary); } .mw-message-box, .mw-message-box-warning { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); } .mw-message-box-warning { border-color: var(--wiki-warning-color); border-width: 1px 1px 1px 10px; } .wikitable *, .wikitable :after, .wikitable :before { -webkit-box-sizing: inherit; box-sizing: inherit; } .cargo-pagevalues-tableinfo { background-color: var(--wiki-content-background-color); border-bottom: 1px solid var(--wiki-content-border-color); top: 46px; position: static; /* override sticky in the built-in */ } .cargo-table-diagram .cargo-table-svg .node.entity-name rect { fill: var(--wiki-content-background-color--secondary); fill-opacity: 1; } .cargo-table-diagram .cargo-table-svg .node rect { stroke: var(--wiki-content-border-color); opacity: 1; } .cargo-table-diagram .cargo-table-svg .node text tspan { fill: var(--wiki-content-text-color); } table.cargoTable { color: var(--wiki-content-text-color); } table.cargoTable tbody td, table.cargoTable thead th { border: 1px solid var(--wiki-content-border-color); } table.cargoTable tr:hover { background-color: rgba(var(--wiki-accent-color--rgb), .25); } table.cargoTable thead tr:nth-child(odd), table.cargoTable.noMerge thead tr:nth-child(odd) { background-color: var(--wiki-accent-color); } table.cargoTable tbody tr:nth-child(2n), table.cargoTable.noMerge tbody tr:nth-child(2n) { background-color: var(--wiki-content-background-color); } table.cargoTable tbody tr:nth-child(odd), table.cargoTable.noMerge tbody tr:nth-child(odd) { background-color: var(--wiki-content-background-color--secondary); } table.cargoTable th.headerSort { color:var(--wiki-accent-label-color); } table.cargoTable th.headerSort:hover { color:var(--wiki-accent-label-color); text-decoration:underline; } #mw-content-text div.cargoReplacementTableInfo { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); }.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { color:var(--wiki-content-text-color); } table.dataTable tbody tr { background-color:var(--wiki-content-background-color); } table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 { background-color:rgba(var(--wiki-content-background-color--secondary--rgb), 0.75); } table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd, table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); } table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 { background-color:rgba(var(--wiki-content-background-color--rgb), 0.75); } table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { background-color: var(--wiki-content-background-color--secondary); } .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { /* we need this !important to override a built-in one */ color: var(--wiki-content-text-mix-color) !important; } table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td { border-top: 1px solid var(--wiki-content-border-color); } .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { /* we need this !important to override a built-in one */ color: var(--wiki-content-mix-color) !important; border: 1px solid var(--wiki-content-border-color); background-color: var(--wiki-content-background-color); background: linear-gradient(to bottom,var(--wiki-content-background-color) 0%,var(--wiki-content-background-color--secondary) 100%); } div.drilldown-filters-wrapper { background-color: transparent; border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .action-pagevalues tr:nth-of-type(2n) { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); } .action-pagevalues tr:hover { background-image: linear-gradient(rgba(var(--wiki-accent-color--rgb), 0.2), rgba(var(--wiki-accent-color--rgb), 0.2)); } div.specialCargoQuery-extraPane { background: var(--wiki-content-background-color); } div.thumbinner { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .thumbimage { background-color: unset; border: unset; } .oo-ui-panelLayout-framed { border-color:var(--wiki-content-border-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button { background-color: transparent; } .oo-ui-checkboxInputWidget [type="checkbox"] + span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked + span { filter: unset; background-color:rgba(var(--wiki-content-link-color--rgb), 0.05); border-color:rgba(var(--wiki-content-link-color--rgb), 0.75); } .oo-ui-inputWidget-input + .oo-ui-image-invert.oo-ui-icon-check { background-image:none; } .oo-ui-inputWidget-input:checked + .oo-ui-image-invert.oo-ui-icon-check::before { position:absolute; width:100%; height:100%; top:0; left:0; background-image: url(/load.php?modules=oojs-ui-core.icons&image=check&variant=invert&format=rasterized&skin=vector&version=y9f1k); background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3E check %3C/title%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M7 14.2 2.8 10l-1.4 1.4L7 17 19 5l-1.4-1.4z%22/%3E%3C/g%3E%3C/svg%3E"); content:''; pointer-events: none; filter:var(--wiki-icon-general-filter); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover+span { border-color: var(--wiki-content-link-color); filter: unset; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span { background-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:focus+span { box-shadow: none; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active+span { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus+span { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); outline: 1px solid transparent; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span { background-color: var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:focus+span { background-color: rgba(var(--wiki-content-link-color--rgb), 0.5); border-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active + span { background-color: rgba(var(--wiki-content-link-color--rgb), 0.5) } .oo-ui-image-invert.oo-ui-icon-check { background:none; position:relative; } .oo-ui-inputWidget-input:checked + .oo-ui-image-invert.oo-ui-icon-check::before { position:absolute; width:100%; height:100%; top:0; left:0; background-image: url(/load.php?modules=oojs-ui-core.icons&image=check&variant=invert&format=rasterized&skin=vector&version=y9f1k); background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3E check %3C/title%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M7 14.2 2.8 10l-1.4 1.4L7 17 19 5l-1.4-1.4z%22/%3E%3C/g%3E%3C/svg%3E"); content:''; pointer-events: none; filter:var(--wiki-icon-general-filter); } .oo-ui-indicatorElement-indicator { filter: var(--wiki-icon-to-link-filter); } .mw-rcfilters-ui-savedLinksListWidget-placeholder.oo-ui-optionWidget .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:not(.oo-ui-tagItemWidget-fixed) { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:hover { color: var(--wiki-content-text-color--hover); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:focus { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .mw-rcfilters-ui-savedLinksListWidget-menu .mw-rcfilters-ui-savedLinksListItemWidget { color: var(--wiki-content-text-color); padding: 8px 6px; -webkit-transition: color .3s, background-color .3s; transition: color .3s, background-color .3s; } .mw-rcfilters-ui-savedLinksListWidget-menu .mw-rcfilters-ui-savedLinksListItemWidget:hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15); color: var(--wiki-content-link-color); } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined { background-color: transparent; } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-content-border-color); } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle+.mw-rcfilters-ui-table, .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle.mw-rcfilters-ui-filterTagMultiselectWidget-emphasize { background-color: var(--wiki-content-background-color--secondary); } .mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget { border-color: var(--wiki-content-border-color); padding: 0; } .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-savedQueryTitle { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button>.oo-ui-labelElement-label { color: var(--wiki-content-link-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button>.oo-ui-labelElement-label:hover { color: var(--wiki-content-link-color--hover); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button:before { content: "[" } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button:after { content: "]" } .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color); } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-dynamic-color--inverted); } .mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters { color: rgba(var(--wiki-content-text-color--rgb), .6) } .mw-rcfilters-ui-filterMenuSectionOptionWidget { background-color: var(--wiki-content-background-color) } .oo-ui-menuSelectWidget { background-color: var(--wiki-content-background-color--secondary); } .mw-rcfilters-ui-filterMenuSectionOptionWidget-header-title.oo-ui-labelElement-label { color: var(--wiki-content-text-color) } .mw-rcfilters-ui-filterMenuHeaderWidget-header { background-color: var(--wiki-content-background-color); border-bottom-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-filterMenuHeaderWidget-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-itemMenuOptionWidget:not(:last-child):not(.mw-rcfilters-ui-itemMenuOptionWidget-identifier-talk) { border-bottom-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces { border-top-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-title, .mw-rcfilters-ui-itemMenuOptionWidget:hover, .mw-rcfilters-ui-itemMenuOptionWidget:hover .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget:hover .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-link-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span, .mw-rcfilters-ui-itemMenuOptionWidget:hover .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span { border-color: var(--wiki-content-link-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected, .mw-rcfilters-ui-itemMenuOptionWidget:hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15) } .mw-rcfilters-ui-itemMenuOptionWidget-excludeLabel, .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-itemMenuOptionWidget-label-desc { color: rgba(var(--wiki-content-text-color--rgb), .6); } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected:hover, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected):hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-title, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-text-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .mw-rcfilters-ui-itemMenuOptionWidget-label-desc { color: rgba(var(--wiki-content-text-color--rgb), .6) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span { border-color: var(--wiki-content-text-color) } .mw-rcfilters-ui-viewSwitchWidget label.oo-ui-labelWidget { color: rgba(var(--wiki-content-text-color--rgb), .6) } .oo-ui-tagItemWidget.oo-ui-widget-enabled, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color: transparent; color: var(--wiki-content-text-color); border-color:var(--wiki-content-text-mix-color); } .mw-changeslist-legend, .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-rcfilters-ui-menuSelectWidget-footer { background-color: var(--wiki-content-text-mix-color-95); } .mw-rcfilters-ui-filterMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) { background-color: rgba(var(--wiki-body-dynamic-color--rgb), 0.1); } .oo-ui-iconElement-icon.mw-rcfilters-ui-filterItemHighlightButton-circle { filter:unset; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .mw-rcfilters-ui-tagItemWidget-selected.oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); border-color:var(--wiki-content-link-color); } .mw-rcfilters-ui-tagItemWidget.oo-ui-flaggedElement-muted.oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-labelElement-label { color: rgba(var(--wiki-content-text-color--rgb), .76); } .mw-rcfilters-ui-tagItemWidget-popup-content { color: rgba(var(--wiki-content-text-color--rgb), .75); } .oo-ui-popupWidget-anchored-bottom .oo-ui-popupWidget-anchor:before { border-top-color: var(--wiki-content-border-color); } .oo-ui-popupWidget-anchored-bottom .oo-ui-popupWidget-anchor:after { border-top-color: var(--wiki-content-background-color--secondary); } .unpatrolled { color: var(--wiki-alert-color); } .autocomment, .autocomment a, .autocomment a:visited { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } .autocomment, .autocomment a, .autocomment a:visited { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } /* Recent changes filter highlighting */ .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c1, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c1 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c1.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c1.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #1c283f; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c2, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c2 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c2.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c2.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #0f3128; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c3, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c3 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c3.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c3.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #352c10; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c4, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c4 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c4.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c4.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #411d0c; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c5, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c5 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c5.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c5.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #3f0f0f; } .mw-icon-arrow-collapsed, .mw-collapsible-arrow.mw-collapsible-toggle-collapsed { filter:brightness(75%) var(--wiki-icon-general-filter); } /* The below rules fix an error caused by the above rule because the toggles in the edit footer have text and an arrow in the same element, so the text gets inverted when it shouldn't be */ .mw-editfooter-toggler { position:relative; filter:unset; background:none; } .mw-editfooter-toggler::before { position:absolute; left:0; top:0; background-repeat: no-repeat; background-position: left center; width:12px; height:100%; content:''; filter:brightness(75%) var(--wiki-icon-general-filter); } .mw-editfooter-toggler.mw-icon-arrow-collapsed::before { background-image: url(/resources/src/mediawiki.icon/images/arrow-collapsed-ltr.svg?40e9a); } .mw-editfooter-toggler.mw-icon-arrow-expanded::before { background-image: url(/resources/src/mediawiki.icon/images/arrow-expanded.svg?d0685); } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled { background-color: transparent; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { -webkit-transition: border-color 300ms, box-shadow 300ms; transition: border-color 300ms, box-shadow 300ms; background-color: var(--wiki-content-background-color--secondary) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-tagMultiselectWidget-focus .oo-ui-tagMultiselectWidget-handle { box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); outline: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined:hover .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-content-link-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid .oo-ui-tagMultiselectWidget-handle, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid:hover .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagMultiselectWidget-handle { background-color: var(--wiki-content-background-color--secondary); border-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-inputWidget-input { border-top-left-radius: 0; border-top-right-radius: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { border-color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-handle { opacity: 0.5 } .oo-ui-tagMultiselectWidget-handle .oo-ui-tagMultiselectWidget-group > input { color:var(--wiki-content-text-color); } .oo-ui-tagMultiselectWidget .oo-ui-inputWidget-input { color: inherit; background: transparent; font-family: inherit } .oo-ui-textInputWidget .oo-ui-inputWidget-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .oo-ui-dropdownWidget.oo-ui-widget-disabled .oo-ui-dropdownWidget-handle, .oo-ui-textInputWidget.oo-ui-widget-disabled .oo-ui-inputWidget-input, .oo-ui-dropdownWidget.oo-ui-widget-disabled .oo-ui-dropdownWidget-handle { background: var(--wiki-content-text-mix-color-95); color: rgba(var(--wiki-content-text-color--rgb), 0.25); text-shadow:none; border-color:var(--wiki-content-text-mix-color); } .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input::placeholder { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:hover { background-color: var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); } .oo-ui-outlineOptionWidget.oo-ui-optionWidget-selected, .oo-ui-outlineOptionWidget.oo-ui-optionWidget-highlighted { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color); } .oo-ui-bookletLayout-outlinePanel { padding: 7px 0; } .oo-ui-processDialog-content .oo-ui-window-head, .oo-ui-processDialog-content .oo-ui-window-foot, .oo-ui-messageDialog-content > .oo-ui-window-head, .oo-ui-messageDialog-content > .oo-ui-window-foot { outline-color: var(--wiki-content-border-color); } .oo-ui-processDialog-actions-safe .oo-ui-widget-enabled.oo-ui-iconElement:not(.oo-ui-labelElement) > .oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-background-color); border-right-color: var(--wiki-content-border-color); } .oo-ui-messageDialog-title { color: var(--wiki-heading-color); } /* OAuth authorisation dialog */ #mw-mwoauth-authorize-form { color: inherit; } .oo-ui-toolbar-bar, .oo-ui-popupToolGroup-tools, .oo-ui-listToolGroup-tools .oo-ui-tool.oo-ui-widget-enabled:hover { background-color:var(--wiki-content-background-color--secondary); color:var(--wiki-content-text-color); } .oo-ui-toolbar-actions .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover { border-right-color:var(--wiki-content-border-color); } .oo-ui-menuToolGroup-tools .oo-ui-tool.oo-ui-tool-active, .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:active, .oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active > .oo-ui-tool-link, .oo-ui-tool.oo-ui-widget-enabled.oo-ui-popupToolGroup-active > .oo-ui-tool-link, .oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle { background-color: var(--wiki-content-background-color); color: var(--wiki-content-link-color); } .oo-ui-tool.oo-ui-widget-enabled .oo-ui-tool-link { /* we remove the transition here because it causes the hard-coded color to flash briefly */ transition:none; } .oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle:hover { color:var(--wiki-content-link-color); } .oo-ui-popupToolGroup-tools .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title { color:var(--wiki-content-link-color); } .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover, .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.15); } .oo-ui-menuToolGroup, .oo-ui-popupToolGroup-tools { border-color:var(--wiki-content-border-color); } .oo-ui-toolbar-position-top > .oo-ui-toolbar-bar { border-color: var(--wiki-content-border-color); box-shadow: 0 1px 1px 0 rgba(var(--wiki-content-dynamic-color--rgb),0.1); } .oo-ui-barToolGroup-tools.oo-ui-toolGroup-enabled-tools .oo-ui-tool.oo-ui-widget-disabled.oo-ui-flaggedElement-primary > .oo-ui-tool-link, .oo-ui-barToolGroup-tools.oo-ui-toolGroup-disabled-tools .oo-ui-tool.oo-ui-flaggedElement-primary > .oo-ui-tool-link { background-color: var(--wiki-content-text-mix-color); border-color: var(--wiki-content-text-mix-color); } .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link { background-color:var(--wiki-accent-color); color:var(--wiki-accent-label-color); } .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link:hover { background-color:var(--wiki-accent-color--hover); } .oo-ui-buttonElement-frameless>.oo-ui-buttonElement-button, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color) } .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-content-text-color--hover) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-content-text-color--hover) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-destructive > .oo-ui-buttonElement-button{ color: var(--wiki-alert-color) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-alert-color--hover) } .oo-ui-buttonElement-frameless>.oo-ui-buttonElement-button { border: 1px solid transparent } .oo-ui-buttonElement-frameless>button.oo-ui-buttonElement-button { color: inherit } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color--hover); border-color: var(--wiki-accent-color--hover) } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button { background-color: #bf0017; border-color: #bf0017; color: #fff } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: #59000b; border-color: #59000b } .oo-ui-messageWidget.oo-ui-messageWidget-block.oo-ui-flaggedElement-warning { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active>.oo-ui-buttonElement-button { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active>.oo-ui-buttonElement-button { color: var(--wiki-content-link-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover { background-color: transparent; } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-dynamic-color--inverted); } .mw-htmlform-ooui .mw-htmlform-matrix tbody tr:nth-child(2n) td, .mw-htmlform-ooui .mw-htmlform-matrix tbody tr:hover td { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-popupWidget-popup { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color:var(--wiki-content-text-color); } .mw-ui-button { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color: var(--wiki-content-link-color); border-color: var(--wiki-content-border-color); } .mw-ui-button:not(:disabled):visited { color: var(--wiki-content-link-color); } .mw-ui-button:not(:disabled):hover { background-color: var(--wiki-content-text-mix-color-95); border-color: var(--wiki-content-border-color); color: var(--wiki-content-link-color--hover); } .mw-ui-button:not(:disabled):focus { border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-ui-button:not(:disabled):active, .mw-ui-button:not(:disabled).is-on { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-link-color); } .mw-ui-icon-before::before { filter: var(--wiki-icon-to-link-filter); } .oo-ui-windowManager-modal > .oo-ui-dialog > .oo-ui-window-frame { background-color: var(--wiki-content-background-color); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); } .oo-ui-windowManager-modal>.oo-ui-dialog { background-color: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.5); } .oo-ui-windowManager-modal.oo-ui-windowManager-floating > .oo-ui-dialog > .oo-ui-window-frame { border-color:var(--wiki-content-border-color); } .oo-ui-messageDialog-message { color: var(--wiki-content-text-color); } .oo-ui-buttonElement-framed:not(.oo-ui-flaggedElement-primary):not(.oo-ui-buttonElement-active) > .oo-ui-buttonElement-button { color: var(--wiki-content-text-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button { color: var(--wiki-content-link-color); border-color:rgba(var(--wiki-content-link-color--rgb), 0.5); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-link-color--hover); border-color:var(--wiki-content-link-color); box-shadow:inset 0 0 3px var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-pressed > .oo-ui-buttonElement-button { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color--hover); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:focus { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-disabled > .oo-ui-buttonElement-button { background-color: var(--wiki-content-text-mix-color); border-color: var(--wiki-content-text-mix-color); } /* Date picker */ .mw-widget-dateInputWidget-handle { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-widget-dateInputWidget.oo-ui-widget-enabled .mw-widget-dateInputWidget-handle:hover { border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-widget-dateInputWidget.oo-ui-widget-enabled .mw-widget-dateInputWidget-handle > .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget { border-color: var(--wiki-content-border-color); } .mw-widget-dateInputWidget-calendar { background-color: var(--wiki-content-background-color); } .mw-widget-calendarWidget-header .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-day-heading { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } .mw-widget-calendarWidget-day { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-day-additional { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } .mw-widget-calendarWidget-month { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-year { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-item-selected { color: #fff; } .mw-widgets-datetime-calendarWidget:focus { border-color: var(--wiki-content-border-color); box-shadow: none; } .mw-widgets-datetime-calendarWidget-grid { overflow-x: initial; } .mw-widgets-datetime-dateTimeInputWidget-handle { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-widgets-datetime-dateTimeInputWidget.oo-ui-widget-enabled .mw-widgets-datetime-dateTimeInputWidget-handle:hover { border-color: var(--wiki-content-border-color); } .mw-widgets-datetime-dateTimeInputWidget.oo-ui-widget-enabled .mw-widgets-datetime-dateTimeInputWidget-editField:hover { background-color: var(--wiki-content-background-color); } .mw-widgets-datetime-calendarWidget { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); } .mw-widgets-datetime-calendarWidget-grid .mw-widgets-datetime-calendarWidget-cell.mw-widgets-datetime-calendarWidget-extra .oo-ui-buttonElement-button .oo-ui-labelElement-label { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } /* Unpatrolled page creations on Special:NewPages */ .not-patrolled { background-color: rgba(var(--wiki-warning-color--rgb), 0.16); } pre, code, .mw-code { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-templatedata-doc-param-alias { color:var(--wiki-content-text-mix-color); } .mw-highlight, .view-light .mw-highlight { --pygments-background: var(--wiki-content-background-color--secondary); --pygments-err: #db0000; --pygments-c: #3a7575; --pygments-k: #008000; --pygments-o: #666; --pygments-ch: #3a7575; --pygments-cm: #3a7575; --pygments-cp: #986200; --pygments-cpf: #3a7575; --pygments-c1: #3a7575; --pygments-cs: #3a7575; --pygments-gd: #a00000; --pygments-gr: #db0000; --pygments-gh: #000080; --pygments-gi: #008100; --pygments-go: #6e6e6e; --pygments-gp: #000080; --pygments-gu: #800080; --pygments-gt: #04d; --pygments-kc: #008000; --pygments-kd: #008000; --pygments-kn: #008000; --pygments-kp: #008000; --pygments-kr: #008000; --pygments-kt: #b00040; --pygments-m: #666; --pygments-s: #ba2121; --pygments-na: #647421; --pygments-nb: #008000; --pygments-nc: #00f; --pygments-no: #800; --pygments-nd: #a412ff; --pygments-ni: #6d6d6d; --pygments-ne: #c9352e; --pygments-nf: #00f; --pygments-nl: #727200; --pygments-nn: #00f; --pygments-nt: #008000; --pygments-nv: #19177c; --pygments-ow: #a412ff; --pygments-w: #6e6e6e; --pygments-mb: #666; --pygments-mf: #666; --pygments-mh: #666; --pygments-mi: #666; --pygments-mo: #666; --pygments-sa: #ba2121; --pygments-sb: #ba2121; --pygments-sc: #ba2121; --pygments-dl: #ba2121; --pygments-sd: #ba2121; --pygments-s2: #ba2121; --pygments-se: #a55a1e; --pygments-sh: #ba2121; --pygments-si: #af4d74; --pygments-sx: #008000; --pygments-sr: #af4d74; --pygments-s1: #ba2121; --pygments-ss: #19177c; --pygments-bp: #008000; --pygments-fm: #00f; --pygments-vc: #19177c; --pygments-vg: #19177c; --pygments-vi: #19177c; --pygments-vm: #19177c; --pygments-il: #666; } .view-dark .mw-highlight { --pygments-background: var(--wiki-content-background-color--secondary); --pygments-err: #fe4242; --pygments-c: #4b9797; --pygments-k: #00a300; --pygments-o: #898989; --pygments-ch: #4b9797; --pygments-cm: #4b9797; --pygments-cp: #c17d00; --pygments-cpf: #4b9797; --pygments-c1: #4b9797; --pygments-cs: #4b9797; --pygments-gd: #ff3f3f; --pygments-gr: #fe4242; --pygments-gh: #7a7aff; --pygments-gi: #00a000; --pygments-go: #8a8a8a; --pygments-gp: #7a7aff; --pygments-gu: #f500f5; --pygments-gt: #4e84fe; --pygments-kc: #00a300; --pygments-kd: #00a300; --pygments-kn: #00a300; --pygments-kp: #00a300; --pygments-kr: #00a300; --pygments-kt: #fe357e; --pygments-m: #898989; --pygments-s: #e25e5e; --pygments-na: #80932a; --pygments-nb: #00a300; --pygments-nc: #7a7afe; --pygments-no: #ff4040; --pygments-nd: #bf5aff; --pygments-ni: #999; --pygments-ne: #da655f; --pygments-nf: #7a7afe; --pygments-nl: #a0a000; --pygments-nn: #7a7afe; --pygments-nt: #00a300; --pygments-nv: #8381e7; --pygments-ow: #bf5aff; --pygments-w: #bbb; --pygments-mb: #898989; --pygments-mf: #898989; --pygments-mh: #898989; --pygments-mi: #898989; --pygments-mo: #898989; --pygments-sa: #e25e5e; --pygments-sb: #e25e5e; --pygments-sc: #e25e5e; --pygments-dl: #e25e5e; --pygments-sd: #e25e5e; --pygments-s2: #e25e5e; --pygments-se: #d07125; --pygments-sh: #e25e5e; --pygments-si: #c17492; --pygments-sx: #00a300; --pygments-sr: #c17492; --pygments-s1: #e25e5e; --pygments-ss: #8381e7; --pygments-bp: #00a300; --pygments-fm: #7a7afe; --pygments-vc: #8381e7; --pygments-vg: #8381e7; --pygments-vi: #8381e7; --pygments-vm: #8381e7; --pygments-il: #898989; } .mw-highlight .err { border-color: var(--pygments-err) } .mw-highlight .c { color: var(--pygments-c) } .mw-highlight .k { color: var(--pygments-k) } .mw-highlight .o { color: var(--pygments-o) } .mw-highlight .ch { color: var(--pygments-ch) } .mw-highlight .cm { color: var(--pygments-cm) } .mw-highlight .cp { color: var(--pygments-cp) } .mw-highlight .cpf { color: var(--pygments-cpf) } .mw-highlight .c1 { color: var(--pygments-c1) } .mw-highlight .cs { color: var(--pygments-cs) } .mw-highlight .gd { color: var(--pygments-gd) } .mw-highlight .gr { color: var(--pygments-gr) } .mw-highlight .gh { color: var(--pygments-gh) } .mw-highlight .gi { color: var(--pygments-gi) } .mw-highlight .go { color: var(--pygments-go) } .mw-highlight .gp { color: var(--pygments-gp) } .mw-highlight .gu { color: var(--pygments-gu) } .mw-highlight .gt { color: var(--pygments-gt) } .mw-highlight .kc { color: var(--pygments-kc) } .mw-highlight .kd { color: var(--pygments-kd) } .mw-highlight .kn { color: var(--pygments-kn) } .mw-highlight .kp { color: var(--pygments-kp) } .mw-highlight .kr { color: var(--pygments-kr) } .mw-highlight .kt { color: var(--pygments-kt) } .mw-highlight .m { color: var(--pygments-m) } .mw-highlight .s { color: var(--pygments-s) } .mw-highlight .na { color: var(--pygments-na) } .mw-highlight .nb { color: var(--pygments-nb) } .mw-highlight .nc { color: var(--pygments-nc) } .mw-highlight .no { color: var(--pygments-no) } .mw-highlight .nd { color: var(--pygments-nd) } .mw-highlight .ni { color: var(--pygments-ni) } .mw-highlight .ne { color: var(--pygments-ne) } .mw-highlight .nf { color: var(--pygments-nf) } .mw-highlight .nl { color: var(--pygments-nl) } .mw-highlight .nn { color: var(--pygments-nn) } .mw-highlight .nt { color: var(--pygments-nt) } .mw-highlight .nv { color: var(--pygments-nv) } .mw-highlight .ow { color: var(--pygments-ow) } .mw-highlight .w { color: var(--pygments-w) } .mw-highlight .mb { color: var(--pygments-mb) } .mw-highlight .mf { color: var(--pygments-mf) } .mw-highlight .mh { color: var(--pygments-mh) } .mw-highlight .mi { color: var(--pygments-mi) } .mw-highlight .mo { color: var(--pygments-mo) } .mw-highlight .sa { color: var(--pygments-sa) } .mw-highlight .sb { color: var(--pygments-sb) } .mw-highlight .sc { color: var(--pygments-sc) } .mw-highlight .dl { color: var(--pygments-dl) } .mw-highlight .sd { color: var(--pygments-sd) } .mw-highlight .s2 { color: var(--pygments-s2) } .mw-highlight .se { color: var(--pygments-se) } .mw-highlight .sh { color: var(--pygments-sh) } .mw-highlight .si { color: var(--pygments-si) } .mw-highlight .sx { color: var(--pygments-sx) } .mw-highlight .sr { color: var(--pygments-sr) } .mw-highlight .s1 { color: var(--pygments-s1) } .mw-highlight .ss { color: var(--pygments-ss) } .mw-highlight .bp { color: var(--pygments-bp) } .mw-highlight .fm { color: var(--pygments-fm) } .mw-highlight .vc { color: var(--pygments-vc) } .mw-highlight .vg { color: var(--pygments-vg) } .mw-highlight .vi { color: var(--pygments-vi) } .mw-highlight .vm { color: var(--pygments-vm) } .mw-highlight .il { color: var(--pygments-il) } .mw-highlight pre { background: var(--pygments-background) } .mw-content-ltr.mw-highlight-lines pre, .mw-content-ltr.content .mw-highlight-lines pre { padding-left: 3.5em; box-shadow: inset 2.75em 0 0 var(--wiki-content-dynamic-color--inverted); } .mw-highlight .hll { background-color: rgba(var(--wiki-accent-color--rgb), .2) } .mw-apisandbox-toolbar { background: var(--wiki-content-background-color--secondary); top: 35px; } /* special:replacetext */ .ext-replacetext-searchoptions { background-color: transparent; border: 1px solid var(--wiki-content-border-color); } .ext-replacetext-searchoptions .ext-replacetext-divider { border-bottom: 1px solid var(--wiki-content-border-color); } /**/ .view-dark textarea { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .view-dark textarea:focus-visible { outline-color: var(--wiki-content-link-color); outline-style: solid; } /* make math formulas legible on dark theme */ .mwe-math-fallback-image-inline, .mwe-math-fallback-image-display { filter: var(--wiki-icon-general-filter); } /* search bar */ #searchInput { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); box-shadow: none; } #searchInput:focus, #simpleSearch:hover #searchInput, #simpleSearch:hover #searchInput:focus { border-color: var(--wiki-content-link-color); box-shadow: none; } #searchButton { filter: var(--wiki-icon-to-link-filter); } .vector-search-box-input::placeholder { color:var(--wiki-content-text-mix-color); } /* Search suggestions */ .suggestions-results, .suggestions-special { background-color: var(--wiki-content-background-color--secondary); } .suggestions a.mw-searchSuggest-link, .suggestions a.mw-searchSuggest-link:hover, .suggestions a.mw-searchSuggest-link:active, .suggestions a.mw-searchSuggest-link:focus { color: var(--wiki-content-text-color); } .suggestions-result { color: var(--wiki-content-link-color); } .suggestions-result-current { background-color: var(--wiki-content-link-color); color: var(--wiki-content-link-label-color); } .suggestions-special .special-label { color: var(--wiki-content-text-mix-color); } .suggestions-special.suggestions-result-current .special-label { color:var(--wiki-content-link-label-color); } .suggestions-special .special-query { color: var(--wiki-link-label-color); } /* search page */ fieldset#mw-searchoptions { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); border-color: var(--wiki-content-border-color); } #mw-searchoptions .divider { border-color: var(--wiki-content-border-color); } .mw-search-profile-tabs { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); border: 1px solid var(--wiki-content-border-color); margin-top: 1em; } .mw-search-profile-tabs div.search-types ul li.current a { color: var(--wiki-content-text-color); } /* invert the help icon on the helplink */ #mw-indicator-mw-helplink a { background-image: none; } #mw-indicator-mw-helplink a::before { background-image: url(/resources/src/mediawiki.helplink/images/helpNotice.svg?46d34); background-position: left center; background-repeat: no-repeat; display: inline-block; vertical-align: middle; height: 20px; padding-left: 25px; content: ""; } #mw-indicator-mw-helplink a::before { filter: var(--wiki-icon-to-link-filter); } /**/ /* Login/register page */ .mw-number-text { color:var(--wiki-content-text-mix-color); } .mw-body-content .mw-number-text h3 { color:var(--wiki-heading-color); } .mw-number-text.icon-edits, .mw-number-text.icon-pages, .mw-number-text.icon-contributors { position:relative; background:none; } .mw-number-text.icon-edits::before, .mw-number-text.icon-pages::before, .mw-number-text.icon-contributors::before { position:absolute; width:95px; height:100%; left:0; top:0; content:''; filter:brightness(0) var(--wiki-icon-general-filter); } .mw-number-text.icon-edits::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABLCAYAAADnAAD1AAACrUlEQVR4AWL4//8/oH170LEsiKIwXGPbtm0EY9s2g7bdjzh4oVnjyslKVZ3hSu+d5L/c0Xdx/Bt5jjCyAR3QAd9/+DhSW4oeoYmJGQdM4HWjYfQKTXTA8pZFeIgjOmA5Hkd0wDwe6TWa6IAcr4eA5RAdEC0neKWIDoieFcMRRPOAaDJ6+4uITxzwJ+KbmnjdaKkDliISPIv/gcvRxsT7kzgix7MGuBz1ooFyRIq3xOJ64ArUG0EMoMV5RI5nAJDjRV1Go1DIIL7meJKAAngc8Qn/tgoACuCNRtfRJhQyGQLkeJcI3u3oP3GzA5bjjYnwEEE0Acjx+urgEcRNVgFX1sUjdaHF9gA53sW/jScFKIC3SH8hIo5nDXAVwbtA8O6U4+kD6uPpA2rhWQNcXYh3N4HXSfAMAHK8838BTwBQF28hCpKAAnj3SvCsAa4heOdU8NQB5fGUAfXxhAEZ3lmCdz+B18Hx9ABN46kBrv1DeAtQsAZYivdAB08AMMLrJ3hBHU8BkOGdqcyMLcCbj4I1QH08YUCGd0kbTwCQ4MW1oFkR3kM5PAHAdVU8gjhPEk8AkOKRBjN481AwAxjhDRCM4Rq1EzwTgAzvGtoqiicAmMcbjRZI4wkATiP/eVe/4QU0DvXJ4gkAHq9gNEV4cdPRRtQjgycAOA51VkAOoECaiF5J4QkA7iVnuI+vgTcXBauAo1BjBeU0mZuCXlfm2gieOcCN5KzPadH7s9EF1CeJJwD4lKy2BLQM3UFDaFgSTwBwKcE5il6Q1wmeA95KQLGafuI54Ay+I4D2Fm1HY2QwBADPZdCG0EO0Wg5CAHAi6k1ce3E1fdDHAQ8TuG50Ml6F4TngGNQawTWjg2iCPoAG4I5vcG/QVrLDIJMDnvyNBYMDeg7ogA7ogJ4DOqBmnwD4A/itR9A4HwAAAABJRU5ErkJggg==) no-repeat left center; } .mw-number-text.icon-pages::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABLCAYAAADnAAD1AAAByUlEQVR4Ae3XQ6JcQRhH8Rs7mYWT2LZt25rEtpNvicGCOid51lWhX3X/B78F1ClnjUZDHChCDgVUQAVUwF+//zTbaEzwJKuqFQJOwVOYB0fSDege8RnMg8OxA47HhMhGho4YM+BHWGTXMApZP1NxAqdKuIS3DhETC5gT0cEonM+LmH7A8BHHF4zhUMyAr3DKswt4ARvCVQ8RL8FyHIoV8DqyAEbidMCIu2AFDqUbEBiLd4EiroOVcDDdgMBJWI4rNSOugpV0MOWAa2EBIq6HVXAw1YDzYQEiboVVdCDFgLNhASIegtWwP7WAM2AVXC4Z8SKsho+pBZwDCxDxIZ7hGo5iN7ZgG/bjOj61QsB5sAARxyArMA7nUw+4GuYQcaSHv/PrlAPuhDnYh8zR9ZQDnoF1+ooXuI87uIvH+JoT8ES7B1yJxZiGETnbbAHuKqCbkbiqgG5mK6Cb8QqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogG0acAwmVHRLAXschDlQQAVUwKYGXIZTDo7qFnakgAqogP4ooAK+waVh5GpSAROggAqogFKOAiqgAiqg/AUjJ7hc1MT1egAAAABJRU5ErkJggg==) no-repeat left center } .mw-number-text.icon-contributors::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAtCAYAAAA5reyyAAAEMElEQVR4AWJ4/uLFYMJsgHbtIVhzLQqg8G7btm3bfLZt2/abtG3btm3btt19tXuNU5UbnV9VPfj2PCtODh7DaOzHDdzEIQxFG6SERItoilcPq6EOpqNsrAdMiWb4CQPQEx+jMsSH13Ad6tJRtIf4UBkfoyf642c0Q8pwBSyOEYiDWpzHP8gIcelZ3IV6dBENIS5lxD84D7WIwwgUD3XActjk8jTLDnFQAiegPm1FFoiD7JgKdbAJ5UIVMA0WQ10aCnEwHBrQ/xAHQ6EuLULqUAT8EurRkxAbtXEWGtBu5IPYeBLq0RemA6bDUqhHwyE2/oIa8qHho3wp0pkM2AS3oR4dRCmIFWZADRkEsUIpHIR6dBtNTAZ8DepDEhpDLIphL9Q9X0dMYyRBfXjNZMD3oT61hFjUwHmoITtQAGLREurT+yYDvgn1IQ4NwhBwP0pALBogDurDmyYDPgL14QjKQCzK43gYjsAyOAL14RGTAcvhKNSjWUgLsciDzVBDliG9zceJWT53fFlzAYGJUI/+g9iYCjVkBMTGv1CPJkJMB/wM6sEdtILY6Aw15A+IjVa4A/Xgs1C9ym2AujQVkoznkQgN6CpaQAwd7euQynxA4EMkuTz6noAkIxu2QQNaAXHwhMujMAkfhvpz1gSogwEQF/pAA/oV4sIAqIPxkFAHLIwVUBuLkQ/iQkNchPp0BHkhLuTDYocjuVDoAwLNobCKx7MQZ0buxn9CPHgO8VBYNYOEI2AxTIPaWI3SEJdq47rPz1jZIC6VxmqHm17RUAYsjm+wB+rgDH5FZYgL/0M9egjiQmX8hjNQB3vwDYqZClgRn2I8TkM9uoxp+BY1IDayYAnUpd8hyaiBbzEdl6EencZ4fIoKXgPWQ0eswTmoIRexCz9DYFUWh6AOeiEFBFYfYYv7aK6cxRp0RL3kAjbBSsRBQ+gwykBg1SrAF+5qOAUNoTisRBNrwHeQAA2D7hAbLQL+qOoBDYMEvA0RRm3cg4bQIYxBO4iNnFgOdfAoJBntMAaHoSF0D7WtbwOmJGIHBuFtFHJxhx8HdeEEnoI4KIS3MQg7kAg1rI8w9kMN2YQ/8RByQRwUxE844GPvj0B9iAu58BD+NPwdcp8wrkEDOoG3kR3iIC0exhAcgQZwHQvwOfJDXMiOt3ECGtA1EwH3oDLERgoUxisYhv24AzUoEWexCD+iJtJBklEF+yId8A7aQywyoCK+xCJcRSI0TO5iL7qjDXIjBcTiIdwNGnAetmKjR8fQHdYL93tYiSRolDiJzqgLseiOYz62fyvmCcOUJ3EAGuV6oUi0rVD9BBpDtqJstARsj3hojFmBdNEQcDw0Rn0V6YAVcBIao2YjXSQDtoDGsDOoFMmAD0FjXLMHAYN5KJIBW+FBwADq4x40hrWLZMCKOIhEXIsxd3EdDSF+3QeCfPkMAgchOAAAAABJRU5ErkJggg==) no-repeat left center } /**/ /* Multimedia viewer */ .mw-mmv-post-image, .mw-mmv-image-metadata { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-ui-button.mw-ui-progressive:not(:disabled) { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):hover { background-color: var(--wiki-accent-color--hover); } .skin-vector .mw-ui-button.mw-ui-progressive:hover, .skin-vector .mw-ui-button.mw-ui-primary:disabled { box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75) inset, 0 0 5px var(--wiki-content-border-color); border: 2px solid var(--wiki-content-border-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):active, .mw-ui-button.mw-ui-progressive:not(:disabled).is-on { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); } .mw-ui-button.mw-ui-progressive { box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75) inset, 0 0 5px var(--wiki-content-border-color) } .mw-ui-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-ui-input:hover, .mw-ui-input:focus{ background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-ui-input::placeholder { color:var(--wiki-content-text-mix-color); } .mw-mmv-dialog { background-color: var(--wiki-content-background-color--secondary); box-shadow: 0 2px 2px 0 var(--wiki-content-border-color); } .mw-mmv-dialog .mw-mmv-dialog-down-arrow { background-color: var(--wiki-content-background-color--secondary); } .mw-mmv-options-dialog-header { color: var(--wiki-content-text-color); } .mw-mmv-options-text-header, .mw-mmv-options-text-body { color: var(--wiki-content-text-mix-color); } .mw-ui-button.mw-ui-quiet, .mw-ui-button.mw-ui-quiet.mw-ui-progressive, .mw-ui-button.mw-ui-quiet.mw-ui-destructive { color: var(--wiki-content-link-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):focus { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 1), inset 0 0 0 2px var(--wiki-content-link-color); } input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet, input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet.mw-ui-progressive, input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet.mw-ui-destructive, .mw-ui-button.mw-ui-quiet:active, .mw-ui-button.mw-ui-quiet.mw-ui-progressive:active, .mw-ui-button.mw-ui-quiet.mw-ui-destructive:active, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet.mw-ui-progressive, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet.mw-ui-destructive, .mw-ui-button.mw-ui-quiet:focus, .mw-ui-button.mw-ui-quiet.mw-ui-progressive:focus, .mw-ui-button.mw-ui-quiet.mw-ui-destructive:focus { color: var(--wiki-content-text-color); } /**/ /* Echo */ .mw-echo-ui-notificationItemWidget { background-color: var(--wiki-content-background-color); } .mw-echo-ui-notificationItemWidget-unread, .mw-echo-ui-placeholderItemWidget { background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.8); } .mw-echo-ui-notificationItemWidget-unread:hover, .mw-echo-ui-notificationItemWidget:hover, .mw-echo-ui-notificationsInboxWidget-toolbarWrapper { background-color:var(--wiki-content-background-color--secondary); } .mw-echo-ui-menuItemWidget > .oo-ui-buttonElement-button > .oo-ui-labelElement-label, .mw-echo-ui-notificationItemWidget-content-message-body { color:var(--wiki-content-text-mix-color); } .mw-echo-ui-notificationsListWidget:not(:hover) a, #p-personal .mw-echo-ui-notificationsListWidget:not(:hover) a.new, .mw-echo-ui-notificationItemWidget-content-message-header, .mw-echo-ui-notificationItemWidget-content-actions-timestamp{ color:var(--wiki-content-text-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-optionWidget-selected > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-link-label-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-text-color); } .mw-echo-ui-pageNotificationsOptionWidget-label-count { background-color:var(--wiki-content-background-color--secondary); color:var(--wiki-content-text-color); } .mw-echo-ui-notificationItemWidget, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-head, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-footer, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-footer .mw-echo-ui-notificationBadgeButtonPopupWidget-footer-buttons .oo-ui-buttonElement:last-child { border-color:var(--wiki-content-border-color); } .mw-echo-ui-notificationItemWidget:last-child { border-bottom:1px solid var(--wiki-content-border-color); } .mw-echo-ui-crossWikiNotificationItemWidget-group, .mw-echo-ui-bundleNotificationItemWidget-group { background-color:var(--wiki-content-background-color); } .mw-echo-ui-notificationItemWidget-icon{ filter:brightness(0) var(--wiki-icon-to-link-filter); } .mw-echo-ui-toggleReadCircleButtonWidget-circle { background-color:var(--wiki-content-link-color); } .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected { background-color:rgba(var(--wiki-content-link-color--rgb), 0.1); color:var(--wiki-content-link-color); } .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected.mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-highlighted, .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-pressed.mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-highlighted{ background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); color:var(--wiki-content-link-color); } .oo-ui-optionWidget-selected .mw-echo-ui-pageNotificationsOptionWidget-label-count { color:var(--wiki-content-link-color); } @-webkit-keyframes unseen-fadeout-to-unread { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color--secondary); } } @keyframes unseen-fadeout-to-unread { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color--secondary); } } @-webkit-keyframes unseen-fadeout-to-read { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color); } } @keyframes unseen-fadeout-to-read { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color); } } .oo-ui-popupWidget-anchored-top .oo-ui-popupWidget-anchor:before { border-bottom-color: var(--wiki-content-border-color); } .oo-ui-popupWidget-anchored-top .oo-ui-popupWidget-anchor:after { border-bottom-color: var(--wiki-content-background-color--secondary); } .client-js .mw-echo-special-nojs { filter:var(--wiki-icon-general-filter) } /**/ /************************* * End Vector theme fixes * **************************/ /************************ * Theme-based Scribunto * *************************/ #mw-scribunto-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-scribunto-console-fieldset, .mw-scribunto-message, .mw-scribunto-input, .mw-scribunto-error, .mw-scribunto-print, .mw-scribunto-normalOutput { background: transparent; } .mw-scribunto-console-fieldset { color: var(--wiki-content-text-color); } .mw-scribunto-message { color: var(--wiki-content-text-color); } .mw-scribunto-input { color: var(--wiki-content-text-color--hover); } .mw-scribunto-error { color: var(--wiki-alert-color); } .mw-scribunto-print { color: var(--wiki-content-text-color); } .mw-scribunto-normalOutput { color: var(--wiki-content-text-color); } /**************** * End Scribunto * *****************/ /*************************** * Theme-based VisualEditor * ****************************/ .ve-init-mw-progressBarWidget { background-color: var(--wiki-body-background-color); border: 1px solid var(--wiki-content-link-color); box-shadow: 0 1px 1px rgba(var(--wiki-content-dynamic-color--rgb),0.15); } .ve-init-mw-progressBarWidget-bar { background-color:var(--wiki-content-link-color); } div.ve-ce-branchNode { background-color:var(--wiki-content-background-color); border-color:var(--wiki-content-border-color); } .ve-ce-focusableNode-highlight { background: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .ve-ce-surface-highlights-focused .ve-ce-focusableNode-highlights { opacity: 0.25; } .ve-ce-branchNode-blockSlug, .ve-ce-branchNode-newSlug { outline-color: var(--wiki-content-link-color); background-color: rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.75); } .ve-ui-specialCharacterPage-character, .oo-ui-toolbar-position-top .ve-ui-toolbarDialog-position-above, .oo-ui-bookletLayout > .oo-ui-menuLayout-menu, .ve-ui-mwTwoPaneTransclusionDialogLayout > .oo-ui-menuLayout-menu, .ve-ui-specialCharacterPage-character:hover { border-color:var(--wiki-content-border-color); } .ve-ui-specialCharacterPage-character:hover { box-shadow:inset 0 0 1px 1px var(--wiki-content-link-color); } /******************* * End VisualEditor * ********************/ /*********************** * Theme-based msupload * ************************/ #msupload-div, #msupload-list .file { background-color:var(--wiki-content-background-color); border-color:var(--wiki-content-border-color); } #msupload-dropzone { border-color:var(--wiki-content-border-color); color:var(--wiki-content-text-color); } .drop-over { background-color:var(--wiki-accent-color); color:var(--wiki-accent-label-color) !important; } #msupload-bottom #msupload-files { padding-left:0; background: none; } #msupload-bottom #msupload-files::before { display:inline-block; background: url(/extensions/MsUpload/resources/images/msu-upload-icon.png?bdd61) no-repeat 0 0; background-position:left center; height:22px; width:25px; content:''; vertical-align: top; filter:var(--wiki-icon-general-filter); } /*************************** * End theme-based msupload * ****************************/ /***************************** * Theme-based commentstreams * ******************************/ .cs-title-edit-field { border-color:var(--wiki-accent-color); } .cs-edit-box , .cs-expanded .cs-comment-header { background-color: var(--wiki-content-background-color--secondary); border-color:var(--wiki-content-border-color); } .cs-target-comment .cs-comment-header { border-color:var(--wiki-accent-color); } .cs-comment-author a { color: var(--wiki-content-link-color); } .cs-comment-details { color: rgba(var(--wiki-content-text-color--rgb), 0.6); } .cs-comment { border:1px solid var(--wiki-content-border-color); } .cs-comment-body { padding:0 5px; } /********************************* * End theme-based commentstreams * **********************************/ /********************* * Mobile adjustments * **********************/ @media screen and (max-width:720px) { :root { --wiki-content-right-margin: 0px; --wiki-content-padding:0.5rem; --wiki-navigation-right-margin: 1px; --wiki-navigation-left-margin: 0px; --wiki-navigation-top-padding: 5px; --wiki-navigation-bottom-padding:0px; --wiki-navigation-height:2rem; --wiki-navigation-search-height:2.15rem; --wiki-navigation-search-margin:0.5rem; --wiki-logo-height: 80px; --wiki-logo-width: 100%; --wiki-logo-margin: 10px; --wiki-head-height: calc(var(--wiki-logo-height) + (var(--wiki-logo-margin) * 2) + var(--wiki-navigation-height) + var(--wiki-navigation-top-padding) + var(--wiki-navigation-bottom-padding)); --wiki-head-icon-padding: 0.25rem; --wiki-head-icon-size: calc(var(--wiki-navigation-height) - var(--wiki-head-icon-padding) * 2); --wiki-sidebar-background-opacity: var(--wiki-content-background-opacity); --wiki-menu-margin: 0.2rem; --wiki-menu-top-offset: calc(var(--wiki-head-height) + 35px + var(--wiki-navigation-bottom-padding) + var(--wiki-navigation-search-margin)); } #mw-page-base, #mw-head-base { height:var(--wiki-head-height); } #mw-page-base { padding-top:35px; } #mw-head-base { margin-top:calc(var(--wiki-head-height) * -1); } #p-logo, #p-logo a { height: var(--wiki-logo-height); width: var(--wiki-logo-width); } #p-logo { position:absolute; background:none; padding:0; left:0; margin:var(--wiki-logo-margin) 0; transform:none; /* Logo's a part of the sidebar panel, which uses relative positioning for the expandable button. Offset the logo appropriately. */ top: calc(-1 * var(--wiki-menu-top-offset) + 35px); } .mw-wiki-logo { background-size:contain; } #mw-head { left:0; width:100%; top:calc(var(--wiki-head-height) + 35px - var(--wiki-navigation-height)); border:none; border-image:none; } #mw-navigation { position:unset; } #left-navigation, #right-navigation { margin-top: 0; height:var(--wiki-navigation-height); } #right-navigation { margin-right: var(--wiki-navigation-right-margin); } div#left-navigation { margin-left: var(--wiki-navigation-left-margin); } div#right-navigation div#p-search { margin-right: 0; } .vector-menu-tabs-legacy, .vector-menu-dropdown { height:var(--wiki-navigation-height); } .vector-menu-tabs-legacy li a { height:var(--wiki-navigation-height); } #p-cactions { padding-bottom: 0px; } #p-search { position: absolute; left: 50%; transform:translateX(-50%); top: calc(var(--wiki-navigation-height) + var(--wiki-navigation-bottom-padding)); margin-left:0px; z-index: 4 /** above #mw-panel **/; } #simpleSearch { width: calc(100vw - var(--wiki-navigation-right-margin) - var(--wiki-navigation-left-margin)); } .vector-search-box-input { height:var(--wiki-navigation-search-height); } .vector-search-box form { margin:var(--wiki-navigation-search-margin) 0px; } .mw-body { border-left: none; border-right: none; margin-top: 0; padding-top:calc(var(--wiki-content-padding) + var(--wiki-navigation-search-height) + var(--wiki-navigation-bottom-padding) + (var(--wiki-navigation-search-margin) * 2)); } .mw-footer { border-left: none; border-right: none; } #mw-panel { position: unset; width:100%; margin: 0px auto; padding: 0; top: 0; background-position:bottom right, top center; background-size:100% 0.5em, 100% 100%; float:unset; } div#mw-navigation div#mw-panel .portal { box-sizing:border-box; text-align: center } .vector-menu-dropdown .vector-menu-content { right: 0; left: unset; } #mw-panel .vector-menu-portal { border-left-width:0; border-right-width:0; } table.wikitable, table.responsive-table { display: block; overflow-x: scroll; } /* disable float on RecentChanges legend */ .mw-changeslist-legend { float: none; margin: 0 auto; } /* advanced search options */ #mw-searchoptions table { float: none; } #mw-searchoptions table td { display: block; } /* popup when clicking the download button in multimediaviewer */ .mw-mmv-dialog { width: unset; } /* turn math elements into scroll blocks unless they're an immediate child of a span */ :not(span)>.mwe-math-element { display: block; overflow-x: auto; } /* Expandable mobile navigation panel */ body.has-vector-mobile-menu #mw-panel { position: absolute; top: var(--wiki-menu-top-offset); z-index: 3; } body.has-vector-mobile-menu #mw-panel .mobile-nav-toggle { position: relative; z-index: 5; display: block; appearance: none; border: 1px solid var(--wiki-content-border-color); margin-left: var(--wiki-navigation-search-margin); margin-bottom: 2px; background-image: var(--wiki-content-background-color--secondary); } body.has-vector-mobile-menu #mw-panel .vector-menu-portal { display: none; } body.has-vector-mobile-menu #mw-panel .mobile-nav-toggle.nav--expanded ~ .vector-menu-portal { display: block; } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal { text-align: left; font-size: 110%; border-left-width: 1px; border-right-width: 1px; margin-inline: calc(var(--wiki-navigation-left-margin) + var(--wiki-menu-margin)); } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal + .vector-menu-portal { border-top: 0; } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal:not(:last-child) { border-bottom: 0; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list { display: flex; flex-wrap: wrap; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list a { display: block; padding: 0.2rem 0.5rem; border: 1px solid transparent; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list a:hover { border-color: var(--wiki-content-link-color); } body.has-vector-mobile-menu #mw-panel #p-navigation-label { display: block; } .mobile-nav-toggle { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M1 3v2h18V3zm0 8h18V9H1zm0 6h18v-2H1z'/%3E%3C/svg%3E%0A"); } /* Search adjustments for the expandable menu */ body.has-vector-mobile-menu #p-search { /* reposition to the right when mobile sidebar menu is active */ left: calc(var(--wiki-navigation-search-margin) * 3 + var(--wiki-head-icon-size) + var(--wiki-head-icon-padding)); right: calc(var(--wiki-navigation-right-margin) + var(--wiki-navigation-search-margin)); transform: none; } body.has-vector-mobile-menu #simpleSearch { width: 100%; margin: 0 auto; } /* icon navbar tabs + expandable nav panel icon */ #mw-head { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg fill='none' height='24' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none' stroke='none'/%3E%3Cpath d='M4 4l4 16l4 -14l4 14l4 -16'/%3E%3C/svg%3E"); } #mw-head .vector-menu-tabs .mw-list-item a, #mw-head .vector-menu-dropdown .vector-menu-heading, #mw-panel .mobile-nav-toggle { line-height:var(--wiki-head-icon-size); width: var(--wiki-head-icon-size); /* same as line height */ height: var(--wiki-head-icon-size); box-sizing: content-box; padding: var(--wiki-head-icon-padding); color: transparent; /**<< for watch/unwatch, the text of <a> will be plain 'watch'/'unwatch' without <span> after clicking. **/ } #mw-head .vector-menu-tabs .mw-list-item a::before, #mw-head .vector-menu-dropdown .vector-menu-heading::before, #mw-panel .mobile-nav-toggle::before { content: ""; display: block; position: unset; background-image: none; width: var(--wiki-head-icon-size); height: var(--wiki-head-icon-size); margin: 0; --mask: var(--icon) no-repeat; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-position: center center; mask-position: center center; background-color: var(--wiki-navigation-text-color); } #mw-head .vector-menu-tabs .mw-list-item a:hover::before, #mw-head .vector-menu-dropdown .vector-menu-heading:hover::before, #mw-panel .mobile-nav-toggle:hover::before, #mw-panel .mobile-nav-toggle.nav--expanded::before { background-color: var(--wiki-navigation-selected-text-color); } #mw-head .vector-menu-tabs .mw-list-item a span, #mw-head .vector-menu-dropdown .vector-menu-heading span { display: none; } #mw-head .vector-menu-dropdown .vector-menu-heading::after { display: none; } #ca-edit { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='m16.77 8 1.94-2a1 1 0 0 0 0-1.41l-3.34-3.3a1 1 0 0 0-1.41 0L12 3.23zM1 14.25V19h4.75l9.96-9.96-4.75-4.75z'/%3E%3C/svg%3E%0A"); } #ca-view, #ca-view-foreign { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 14.5a4.5 4.5 0 1 1 4.5-4.5 4.5 4.5 0 0 1-4.5 4.5M10 3C3 3 0 10 0 10s3 7 10 7 10-7 10-7-3-7-10-7'/%3E%3Ccircle cx='10' cy='10' r='2.5'/%3E%3C/svg%3E"); } #left-navigation li[id^=ca-nstab-] { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E article %3C/title%3E%3Cpath d='M5 1a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 3h5v1H5zm0 2h5v1H5zm0 2h5v1H5zm10 7H5v-1h10zm0-2H5v-1h10zm0-2H5v-1h10zm0-2h-4V4h4z'/%3E%3C/svg%3E%0A"); } #ca-history { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M9 6v5h.06l2.48 2.47 1.41-1.41L11 10.11V6z'/%3E%3Cpath d='M10 1a9 9 0 0 0-7.85 13.35L.5 16H6v-5.5l-2.38 2.38A7 7 0 1 1 10 17v2a9 9 0 0 0 0-18'/%3E%3C/svg%3E%0A"); } #ca-talk { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpath d='M26,12H24V6a3,3,0,0,0-3-3H6A3,3,0,0,0,3,6V24.41l5.12-5.12A1.05,1.05,0,0,1,8.83,19H12v3a3,3,0,0,0,3,3h8.17a1.05,1.05,0,0,1,.71.29L29,30.41V15A3,3,0,0,0,26,12ZM12,15v2H8.83a3,3,0,0,0-2.12.88L5,19.59V6A1,1,0,0,1,6,5H21a1,1,0,0,1,1,1v6H15A3,3,0,0,0,12,15ZM27,25.59l-1.71-1.71A3,3,0,0,0,23.17,23H15a1,1,0,0,1-1-1V15a1,1,0,0,1,1-1H26a1,1,0,0,1,1,1Z'/%3E%3C/g%3E%3C/svg%3E"); } #t-contributions { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg enable-background='new 0 0 32 32' id='Stock_cut' version='1.1' viewBox='0 0 32 32' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdesc/%3E%3Cpath d='M27,12V5h-7v0 c0-2.209-1.791-4-4-4h0c-2.209,0-4,1.791-4,4v0H1v7h0c2.209,0,4,1.791,4,4v0c0,2.209-1.791,4-4,4h0v11h11v0c0-2.209,1.791-4,4-4h0 c2.209,0,4,1.791,4,4v0h7V20h0c2.209,0,4-1.791,4-4v0C31,13.791,29.209,12,27,12L27,12z' fill='none' stroke='%23000000' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E"); } #ca-addsection { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpolygon points='29 15 17 15 17 3 15 3 15 15 3 15 3 17 15 17 15 28 17 28 17 17 29 17 29 15'/%3E%3C/g%3E%3C/svg%3E"); } #ca-viewsource { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath class='heroicon-ui' d='M20.59 12l-3.3-3.3a1 1 0 1 1 1.42-1.4l4 4a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.42-1.4l3.3-3.3zM3.4 12l3.3 3.3a1 1 0 0 1-1.42 1.4l-4-4a1 1 0 0 1 0-1.4l4-4a1 1 0 0 1 1.42 1.4L3.4 12zm7.56 8.24a1 1 0 0 1-1.94-.48l4-16a1 1 0 1 1 1.94.48l-4 16z'/%3E%3C/svg%3E"); } #p-variants { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpath d='M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,13a24.28,24.28,0,0,0-.41-3.62c2.19.91,3.75,2.19,4.25,3.62Zm-2,0H17V10a20.9,20.9,0,0,1,4.34.63A20.26,20.26,0,0,1,22,15ZM17,8V4.19c1.43.5,2.71,2.06,3.62,4.25A24.28,24.28,0,0,0,17,8ZM15,4.19V8a24.28,24.28,0,0,0-3.62.41C12.29,6.25,13.57,4.69,15,4.19ZM15,10v5H10a20.26,20.26,0,0,1,.63-4.34A20.9,20.9,0,0,1,15,10ZM8,15H4.19c.5-1.43,2.06-2.71,4.25-3.62A24.28,24.28,0,0,0,8,15Zm0,2a24.28,24.28,0,0,0,.41,3.62C6.25,19.71,4.69,18.43,4.19,17Zm2,0h5v5a20.9,20.9,0,0,1-4.34-.63A20.26,20.26,0,0,1,10,17Zm5,7v3.84c-1.43-.5-2.71-2.06-3.62-4.25A24.28,24.28,0,0,0,15,24Zm2,3.84V24a24.28,24.28,0,0,0,3.62-.41C19.71,25.75,18.43,27.31,17,27.81ZM17,22V17h5a20.26,20.26,0,0,1-.63,4.34A20.9,20.9,0,0,1,17,22Zm7-5h3.84c-.5,1.43-2.06,2.71-4.25,3.62A24.28,24.28,0,0,0,24,17Zm2.87-6.12A15.11,15.11,0,0,0,23,9a15.11,15.11,0,0,0-1.85-3.87A12.12,12.12,0,0,1,26.84,10.88Zm-16-5.72A15.11,15.11,0,0,0,9,9a15.11,15.11,0,0,0-3.87,1.85A12.12,12.12,0,0,1,10.88,5.16Zm-5.72,16A15.11,15.11,0,0,0,9,23a15.11,15.11,0,0,0,1.85,3.87A12.12,12.12,0,0,1,5.16,21.12Zm16,5.72A15.11,15.11,0,0,0,23,23a15.11,15.11,0,0,0,3.87-1.85A12.12,12.12,0,0,1,21.12,26.84Z'/%3E%3C/g%3E%3C/svg%3E"); } #p-cactions { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='3' cy='10' r='2'/%3E%3Ccircle cx='17' cy='10' r='2'/%3E%3C/svg%3E%0A"); } #ca-watch { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M20 7h-7L10 .5 7 7H0l5.46 5.47-1.64 7 6.18-3.7 6.18 3.73-1.63-7zm-10 6.9-3.76 2.27 1-4.28L3.5 8.5h4.61L10 4.6l1.9 3.9h4.6l-3.73 3.4 1 4.28z'/%3E%3C/svg%3E%0A"); } #ca-unwatch { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' id='Outlined'%3E%3Cg style='fill:%23000000;fill-opacity:1' id='Fill'%3E%3Cpath style='fill:%23000000;fill-opacity:1' id='path1380' d='M 28.61,11.67 H 20 L 17.34,3.47 C 16.920093,2.1973942 15.119907,2.1973942 14.7,3.47 L 12,11.67 H 3.39 c -1.3409796,0.0031 -1.900508,1.71581 -0.82,2.51 l 7,5.07 -2.68,8.21 C 6.5980433,28.35747 7.2662365,29.278767 8.21,29.28 8.4953889,29.267666 8.7705436,29.170143 9,29 l 7,-5.07 7,5.07 c 0.236205,0.170386 0.518805,0.264586 0.81,0.27 0.943763,-0.0012 1.611957,-0.92253 1.32,-1.82 l -2.66,-8.21 7,-5.07 c 1.075277,-0.810084 0.486081,-2.522863 -0.86,-2.5 z' /%3E%3C/g%3E%3C/svg%3E"); } .vector-menu-tabs #ca-watch.icon a:hover::before, .vector-menu-tabs #ca-unwatch.icon a:hover::before { background-image:none; } /* RecentChanges - prevent overflow on long summaries */ .client-js .mw-changeslist ul, .client-js .mw-changeslist table.mw-enhanced-rc { margin-left:0; } .mw-changeslist-line-inner-comment, .mw-changeslist-line .comment { font-size:0.9em; word-break:break-all; } .mw-userlink { overflow-wrap:anywhere; } } /* Hide the expandable navigation button for desktop users */ .mobile-nav-toggle { display: none; } /************* * End mobile * **************/ e7a6f0e80ad4575764418a7559eae7ee2b950dd7 605 596 2024-05-29T01:45:53Z Geekette828 51691 css text/css /* All CSS here will be loaded for users of the Vector skin */ /************************************ * Body, head, and general framework * *************************************/ body { background-image: var(--wiki-body-background-image); background-size:cover; background-position: bottom left; background-repeat: no-repeat; background-attachment: fixed; background-color: var(--wiki-body-background-color); font-family: var(--wiki-body-font-family); accent-color: var(--wiki-accent-color); } #mw-page-base { background:none; } /* let ul default to text that respects color */ ul { list-style-image: none; } /* override default wiki.gg table overflowing in favor of media queries (see bottom of sheet) */ table { display: table; white-space: unset; } /* Signal color scheme hints to browsers */ html.view-dark { color-scheme: dark } html.view-light { color-scheme: light } /************************ * End general framework * *************************/ /************** * Vector tabs * ***************/ .vector-menu-tabs-legacy li, #p-cactions { background-image: linear-gradient( to top, var(--wiki-navigation-background-color) 0, var(--wiki-navigation-background-color--secondary) 1px, var(--wiki-content-background-color) 100%); } #p-cactions { z-index: 5; } .vector-menu-dropdown { /* Matching a built-in rule for .vector-menu-tabs-legacy */ height: 2.5em; } .vector-menu-tabs-legacy li.selected { background: var(--wiki-navigation-selected-background-color); border-color: var(--wiki-navigation-selected-border-color); } .vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading{ background-image: linear-gradient(to bottom,transparent 0,var(--wiki-navigation-border-color) 100%); } .vector-menu-tabs li a, .vector-menu-tabs li.new a, .vector-menu-tabs li.new a:visited, .vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited, #mw-head .vector-menu-dropdown .vector-menu-heading { color: var(--wiki-navigation-text-color); } .vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited { color: var(--wiki-navigation-selected-text-color); } div.vectorMenu .mw-list-item a, .vector-menu-dropdown .mw-list-item.selected a, .vector-menu-dropdown .mw-list-item.selected a:visited { color: var(--wiki-content-link-color); } .vector-menu-dropdown .vector-menu-content { background: none; border: none; box-shadow:none; margin-top:-1px; } .vector-menu-dropdown .vector-menu-content-list { background-color: var(--wiki-content-background-color); border: 1px solid var(--wiki-content-border-color); } .vector-menu-dropdown .vector-menu-heading::after { filter: brightness(0) var(--wiki-icon-to-link-filter); } #p-search { z-index:2; } #p-search .searchButton { background-color:transparent; } /****************** * End vector tabs * *******************/ /******** * Links * *********/ a, .mw-parser-output a.external, .mw-parser-output a.extiw { color: var(--wiki-content-link-color); } a:visited, .mw-parser-output a.extiw:visited, .mw-parser-output a.external:visited { color: var(--wiki-content-link-color--visited); } a:not(.mw-selflink):hover, a:visited:hover, .mw-parser-output a.extiw:hover, .mw-parser-output a.extiw:visited:hover, .mw-parser-output a.external:hover, .mw-parser-output a.external:visited:hover { color:var(--wiki-content-link-color--hover); } a.new, a.new:visited, .mw-usertoollinks-contribs-no-edits { color:var(--wiki-content-redlink-color); } /* move external marker to an after so we can filter it to link color */ .mw-parser-output a.external { background:none; padding-right: 0; } .mw-parser-output a.external::after { display:inline-block; width:1em; height:1em; background-image: url(/skins/Vector/resources/common/images/link-external-small-ltr-progressive.svg?14604); background-position: center right; background-repeat: no-repeat; background-size: 0.857em; content:''; filter:brightness(0) var(--wiki-icon-to-link-filter); vertical-align: text-top; } a.extiw[title^="wikipedia:"]::after { display:inline-block; height:1em; width:1em; margin-left:1px; background-image:url(https://commons.wiki.gg/images/2/28/Wikipedia.svg); background-size:0.857em; background-repeat:no-repeat; background-position:center right; content:''; vertical-align: text-top; } a.extiw[title^="mw:"]::after { display:inline-block; height:1em; width:1em; margin-left:1px; background-image:url(https://commons.wiki.gg/images/9/9b/MediaWiki.svg); background-size:0.857em; background-repeat:no-repeat; background-position:center right; content:''; vertical-align: text-top; } /************ * End links * *************/ /*************** * Left Sidebar * ****************/ #mw-panel .vector-menu-portal { background-color: rgba(var(--wiki-sidebar-background-color--rgb), var(--wiki-sidebar-background-opacity)); border:1px solid var(--wiki-sidebar-border-color); } @media screen and (max-width: 720px) { #mw-panel .vector-menu-portal { background-color: var(--wiki-sidebar-background-color); } } #mw-panel .vector-menu-portal + .vector-menu-portal { border-top: 0; } #mw-panel .vector-menu-portal:last-child { margin-bottom:0; } .vector-menu-portal .vector-menu-content .mw-list-item a, .vector-menu-portal .vector-menu-content .mw-list-item a:visited { color: var(--wiki-sidebar-link-color); } .vector-menu-portal .vector-menu-heading { background: none; color: var(--wiki-sidebar-heading-color); font-family:var(--wiki-heading-font-family); } #t-newpage { --sidebar-icon:url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 384 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-upload { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 512 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-print { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 512 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-whatlinkshere { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 640 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-specialpages { --sidebar-icon: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 576 512%22%3E%3C!--%21Font Awesome Free 6.5.2 by %40fontawesome - https%3A%2F%2Ffontawesome.com License - https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree Copyright 2024 Fonticons%2C Inc.--%3E%3Cpath d%3D%22M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z%22%2F%3E%3C%2Fsvg%3E'); order:-1; } #t-specialpages > a::before, #t-whatlinkshere > a::before, #t-print > a::before, #t-newpage > a::before, #t-upload > a::before { content:''; background-image:var(--sidebar-icon); background-size:contain; background-repeat:no-repeat; background-position:center; display:inline-block; width:15px; height:15px } .view-dark #p-tb .mw-list-item > a::before { filter:var(--wiki-icon-to-link-filter) } #p-tb .mw-list-item > a { display:flex; align-items:center; gap:3px } #p-tb .vector-menu-content-list { display:flex; flex-direction:column; } /******************* * End left sidebar * ********************/ /******* * Logo * ********/ /* [[File:Site-logo.png]] */ .mw-wiki-logo { background-size: contain; } /*********** * End logo * ************/ /*************** * Content area * ****************/ .mw-body, .parsoid-body, .mw-footer { color: var(--wiki-content-text-color); background-color: rgba(var(--wiki-content-background-color--rgb), var(--wiki-content-background-opacity)); border: 1px solid var(--wiki-content-border-color); margin-right: 1em; } .mw-footer { border-top:none; } .mw-footer li { color: var(--wiki-content-text-color); } @media screen and (max-width: 981px) { .mw-body, .parsoid-body, .mw-footer { margin-right: 0; } } /******************************* * End content area and footer * *******************************/ /*********************************** * wiki.gg network elements tuning * *********************************/ #wikigg-footer { position: sticky; top: 100%; margin-top: 0.5rem; clear: both; } /** * Only clear right side in the MW footer to prevent icon overflow. This is accompanied by * the full clear on netfooter to stop the sidebar from offsetting it. */ .mw-footer > div[style^="clear"]:last-child { clear: right !important; } /*************************************** * End wiki.gg network elements tuning * *************************************/ /*********** * Headings * ************/ .mw-body h1, .mw-body h2 { border-bottom: 1px solid var(--wiki-content-border-color); } .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6 { color: var(--wiki-heading-color); font-family:var(--wiki-heading-font-family); } /*************** * End headings * ****************/ /************* * lkg-tables * **************/ .lkg-table { border-collapse: separate; border-spacing: 0; background: var(--theme-table-td-background); border: 1px solid var(--wiki-content-table-border-color); } .lkg-table th { background: var(--wiki-content-table-border-color); color: var(--wiki-accent-label-color); padding: 8px; } .lkg-table tr td, .lkg-table tr { border-bottom: 1px solid var(--wiki-content-border-color); padding: 6px; } .lkg-table tr:last-child td { border-bottom: none; } /*************** * General classes for table size * ****************/ .tablexsmall {width: 30%;} .tablesmall {width: 45%;} .tablemedium {width: calc(100% - 300px);} .tablelarge {width: 99%;} .tablemax30 {max-width: 30%;} .tablemax45 {max-width: 45%;} .tablemax50 {max-width: 50%;} .tablemaxmedium {max-width: calc(100% - 300px);} /************* * Wikitables * **************/ .wikitable { background: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .wikitable>tr>th, .wikitable>*>tr>th { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .wikitable>tr>td, .wikitable>*>tr>td { border: 1px solid var(--wiki-content-border-color); } /* Forward = yes bg on Special:Interwiki */ table.mw-interwikitable.body td.mw-interwikitable-local-yes { background: rgba(var(--wiki-content-link-color--rgb), .1); } .zebra-table > * > tr:nth-of-type(2n), .zebra-table > tr:nth-of-type(2n) { background:rgba(var(--wiki-content-dynamic-color--secondary--rgb), 0.05); } .view-dark .client-js .sortable:not(.jquery-tablesorter) > * > tr:first-child > th:not(.unsortable), .view-dark .jquery-tablesorter th.headerSort { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%229%22 viewBox=%220 0 21 9%22%3E %3Cpath d=%22m14.5 5-4 4-4-4zm0-1-4-4-4 4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } .view-dark .jquery-tablesorter th.headerSortUp { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%224%22 viewBox=%220 0 21 4%22%3E %3Cpath d=%22m6.5 4 4-4 4 4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } .view-dark .jquery-tablesorter th.headerSortDown { background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2221%22 height=%224%22 viewBox=%220 0 21 4%22%3E %3Cpath d=%22m14.5 0-4 4-4-4z%22 fill=%22%23fff%22/%3E %3C/svg%3E"); } /***************** * End wikitables * ******************/ /************** * Preferences * ***************/ .mw-prefs-tabs-wrapper.oo-ui-panelLayout-framed, .mw-prefs-tabs>.oo-ui-menuLayout-content>.oo-ui-indexLayout-stackLayout>.oo-ui-tabPanelLayout { border: none; } .oo-ui-tabSelectWidget-framed { background-color: transparent; border-bottom: 1px solid var(--wiki-content-link-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled, .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { color: var(--wiki-content-text-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected, .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget-selected:hover { background-color: var(--wiki-content-link-color); color: var(--wiki-content-link-label-color); } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected .oo-ui-labelElement-label { border-bottom: none; } .mw-prefs-buttons { background-color: var(--wiki-content-background-color); border-top: 1px solid var(--wiki-content-link-color); } .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled, .oo-ui-textInputWidget .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input[readonly]:not(.oo-ui-pendingElement-pending) { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color) } .oo-ui-pendingElement-pending { background-color: var(--wiki-content-background-color--secondary); background-image: linear-gradient(135deg,var(--wiki-content-background-color) 25%,transparent 25%,transparent 50%,var(--wiki-content-background-color) 50%,var(--wiki-content-background-color) 75%,transparent 75%,transparent); } .oo-ui-dropdownInputWidget.oo-ui-widget-enabled select { color: var(--wiki-content-text-color); } .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:hover, .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:focus, .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:active, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:hover, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:focus, .oo-ui-dropdownInputWidget.oo-ui-widget-enabled:active, .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input:focus, .oo-ui-textInputWidget.oo-ui-widget-enabled:active .oo-ui-inputWidget-input, .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input:focus { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } .oo-ui-menuOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget { color: Var(--wiki-content-text-color); } .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-selected, .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-highlighted, .oo-ui-menuOptionWidget.oo-ui-optionWidget.oo-ui-optionWidget-highlighted.oo-ui-optionWidget-selected, .oo-ui-dropdownWidget.oo-ui-widget-enabled.oo-ui-dropdownWidget-open .oo-ui-dropdownWidget-handle { background-color: rgba(var(--wiki-content-link-color--rgb), 0.15); color: var(--wiki-content-link-color); } /**************** * End preferences * *****************/ /*************** * Page history * ****************/ #pagehistory li { background-color: transparent; border: none; } #pagehistory li.selected { background-color: var(--wiki-content-background-color--secondary); border: 1px dashed var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .diff td.diff-addedline { background-color: var(--wiki-content-background-color); border-color: var(--wiki-success-color); border-width: 1px 1px 1px 4px; } .diff td.diff-addedline .diffchange { background-color: var(--wiki-success-color); color: var(--wiki-success-label-color); } .diff td.diff-deletedline { background-color: var(--wiki-content-background-color); border-color: var(--wiki-alert-color); border-width: 1px 1px 1px 4px; } .diff td.diff-deletedline .diffchange { background-color: var(--wiki-alert-color); color: var(--wiki-alert-label-color) } .diff td.diff-context { background: transparent; border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .diff-marker a.mw-diff-movedpara-right { color: transparent; } .diff-marker a.mw-diff-movedpara-right:hover:after { opacity: .75; } .diff-marker a.mw-diff-movedpara-right:after { color: var(--wiki-content-text-color); content: "\21a9"; } .diff-marker a.mw-diff-movedpara-left { color: transparent; } .diff-marker a.mw-diff-movedpara-left:hover:after { opacity: .75; } .diff-marker a.mw-diff-movedpara-left:after { color: var(--wiki-content-text-color); content: "\21aa"; } .mw-plusminus-neg { color:var(--wiki-alert-color); } .mw-plusminus-pos { color:var(--wiki-success-color); } /******************* * End page history * ********************/ /******************** * Table of contents * *********************/ #toc, .toc, .toccolours, .mw-warning { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); box-shadow: 0 0.1em 0.2em #000000; } .toctogglelabel { color: var(--wiki-content-link-color); } .tocnumber { color: var(--wiki-content-text-color); } /************************ * End table of contents * *************************/ /************* * Thumbnails * **************/ div.thumb { border: 1px solid var(--wiki-content-border-color); margin: 2px; margin-left: 6px; } img.thumbborder { border: 1px solid var(--wiki-content-border-color); padding: 5px; } div.thumbinner { background-color: rgba(255, 255, 255, .2); } li.gallerybox div.thumb { background-color: rgba(255, 255, 255, .2); border: 1px solid var(--wiki-content-border-color); } html .thumbimage { border: 1px solid var(--wiki-content-border-color); } .thumb, .thumb .thumbinner, .thumb .thumbimage { max-width: 100%; box-sizing: border-box; } .thumb .thumbimage { height: auto; } /* packed-overlay mode for galleries */ ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper { background: rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.8); } /* Responsive floating thumbnails */ @media screen and (max-width: 720px) { div.tright { float: none; margin: 0 auto; width: max-content; } } /***************** * End thumbnails * ******************/ /************** * Wiki editor * ***************/ #wpTextbox0 { /* need !important here to override inline styling */ background-color:var(--wiki-content-background-color) !important; } .wikiEditor-ui { border: none; } .wikiEditor-ui .wikiEditor-ui-top, .wikiEditor-ui .wikiEditor-ui-view { border-color:var(--wiki-content-border-color); } .wikiEditor-ui-toolbar { background: var(--wiki-content-background-color--secondary); } .wikiEditor-ui-toolbar .group, .wikiEditor-ui-toolbar .section-secondary .group { border-color:var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .tabs span.tab a, .wikiEditor-ui-toolbar .tabs span.tab a:visited, .wikiEditor-ui-toolbar .tabs span.tab a.current, .wiikiEditor-ui-toolbar .tabs span.tab a.current:visited, .wikiEditor-ui-toolbar .booklet .index .current { color: var(--wiki-content-link-color); } .wikiEditor-ui-toolbar .group .tool-select .options { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .group .tool-select .options .option { color: var(--wiki-content-text-color); } .wikiEditor-ui-toolbar .group .tool-select .menu .options .option:hover { background-color: var(--wiki-content-background-color); } .wikiEditor-ui-toolbar .tabs span.tab a::before, .wikiEditor-ui-toolbar .group .tool-select .label::after { filter: var(--wiki-icon-general-filter); } .wikiEditor-ui-toolbar .group .label, .wikiEditor-ui-toolbar .group .tool-select .label, .wikiEditor-ui-toolbar .page-table th, .wikiEditor-ui-toolbar .page-table td, .wikiEditor-ui-toolbar .page-characters div span, .wikiEditor-ui-toolbar .booklet .index div { color: var(--wiki-content-text-color); } .wikiEditor-ui-toolbar .booklet>.index> :hover { background-color: var(--wiki-content-background-color--secondary); } .wikiEditor-ui-toolbar .sections .section { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); border-top: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .page-characters div span { border: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .booklet .pages { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .wikiEditor-ui-toolbar .booklet .index .current { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .wikiEditor-ui-toolbar .page-characters div span:hover { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); border-color: var(--wiki-content-border-color); } .wikiEditor-ui-toolbar .page-table td { border-top: 1px solid var(--wiki-content-border-color); } .wikiEditor-ui-tabs div a { background: #9A647F; display: inline-block; } .wikiEditor-ui-tabs div.current { border-bottom: 1px solid #3B3352; } .wikiEditor-ui-tabs div.current a { font-weight: bold; } .wikiEditor-ui-tabs { border-left: 1px solid #3B3352; border-top: 1px solid #3B3352; } .wikiEditor-preview-contents { background: transparent; background-color: rgba(255, 255, 255, 0.2); border-color: #3B3352; border-style: solid; border-width: 0 1px 1px; } .wikiEditor-ui-controls { background: transparent; } .wikiEditor-preview-contents, .wikiEditor-preview-loading { background-color: transparent; } .editOptions { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); border-image: none; border-radius: 0 0 5px 5px; border-style: none solid solid; border-width: medium 1px 1px; } input#wpSummary { margin-bottom: 1em; margin-top: 1em; width: 80%; } .view-dark .ace_editor, .ace_editor { --ace-keywords: #CDA869; --ace-regexp: #E9C062; --ace-constants: #CF6A4C; --ace-illegal: #F8F8F8; --ace-deprecated: #D2A8A1; --ace-support: #9B859D; --ace-function: #DAD085; --ace-list: #F9EE98; --ace-variable: #7587A6; --ace-string: #8F9D6A; --ace-illegal-highlight: rgba(86, 45, 86, 0.75); --ace-step-highlight: #665200; --ace-multiselect-shadow: #141414; } .theme-light .ace_editor{ --ace-keywords: #00f; --ace-regexp: #036a07; --ace-constants: #c5060b; --ace-illegal: #f00; --ace-deprecated: #f00; --ace-support: #6d79de; --ace-function: #3c4c72; --ace-list: #b90690; --ace-variable: #318495; --ace-string: #036a07; --ace-illegal-highlight: rgba(255, 0, 0, 0.1); --ace-step-highlight: #fcff00; --ace-multiselect-shadow: #fff; } .ace_editor .ace_gutter { background: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.85); } .ace_gutter-cell { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.4); } .ace_editor .ace_print-margin { width: 1px; background: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.75); } .ace_editor { /* this image gradient hack effectively lets the element have 2 layers of background */ background-image:linear-gradient(var(--wiki-content-dynamic-color), var(--wiki-content-dynamic-color)); background-color:rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.93); color: rgba(var(--wiki-content-dynamic-color--rgb), 0.93); } .ace_editor .ace_cursor { color: var(--wiki-content-text-color); } .ace_editor .ace_marker-layer .ace_selection { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.20) } .ace_editor.ace_multiselect .ace_selection.ace_start { box-shadow: 0 0 3px 0px var(--ace-multiselect-shadow); } .ace_editor .ace_marker-layer .ace_step { background: var(--ace-step-highlight); } .ace_editor .ace_marker-layer .ace_active-line { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.031) } .ace_editor .ace_gutter-active-line { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.031) } .ace-tm .ace_marker-layer .ace_selected-word { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.05); } .ace_editor .ace_marker-layer .ace_selection { background: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); } .ace_editor .ace_marker-layer .ace_selected-word { border: 1px solid rgba(var(--wiki-content-dynamic-color--rgb), 0.20) } .ace_editor .ace_invisible { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.25) } .ace_editor .ace_keyword, .ace_editor .ace_meta { color: var(--ace-keywords); } .ace_editor .ace_constant, .ace_editor .ace_constant.ace_numeric, .ace_editor .ace_constant.ace_character, .ace_editor .ace_constant.ace_character.ace_escape, .ace_editor .ace_constant.ace_other, .ace_editor .ace_heading, .ace_editor .ace_markup.ace_heading, .ace_editor .ace_support.ace_constant { color: var(--ace-constants); } .ace_editor .ace_invalid.ace_illegal { color: var(--ace-illegal); background-color: var(--ace-illegal-highlight); } .ace_editor .ace_invalid.ace_deprecated { text-decoration: underline; font-style: italic; color: var(--ace-deprecated); } .ace_editor .ace_support, .ace_editor .ace_support.ace_type { color: var(--ace-support); } .ace_editor .ace_fold { background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); border-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.1); } .ace_editor .ace_support.ace_function { color: var(--ace-function); } .ace_editor .ace_list, .ace_editor .ace_markup.ace_list, .ace_editor .ace_storage { color: var(--ace-list); } .ace_editor .ace_entity.ace_name.ace_function, .ace_editor .ace_meta.ace_tag, .ace_editor .ace_variable { color: var(--ace-variable); } .ace_editor .ace_string { color: var(--ace-string); } .ace_editor .ace_string.ace_regexp { color: var(--ace-regexp); } .ace_editor .ace_comment { font-style: italic; color: rgba(var(--wiki-content-dynamic-color--rgb), 0.3); } .ace_editor .ace_xml-pe { color: rgba(var(--wiki-content-dynamic-color--rgb), 0.28); } .ace_editor .ace_indent-guide { background:none; border-right:1px solid rgba(var(--wiki-content-dynamic-color--rgb), 0.2); } .ace_search { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .ace_search_field { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-mix-color); } .ace_button { color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } .ace_button:hover { background-color: var(--wiki-accent-color--hover); color: var(--wiki-accent-label-color); } .ace_button.checked { background-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .ace_searchbtn { background-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); border: 1px solid var(--wiki-content-border-color); } .ace_searchbtn:hover { background-color: var(--wiki-accent-color--hover); color: var(--wiki-accent-label-color); } .ace_searchbtn.prev::after, .ace_searchbtn.next::after { border-color: var(--wiki-accent-label-color); } .ace_searchbtn_close { filter: var(--wiki-icon-general-filter); } .wikiEditor-ui .codeEditor-status { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-editform #wpTextbox1 { background: rgba(var(--wiki-content-background-color--rgb), 0.5); color: var(--wiki-content-text-color); } .view-dark .CodeMirror, .CodeMirror { --codemirror-yellow: #ffd700; --codemirror-light-blue: #adf; --codemirror-blue: #08f; --codemirror-green: #290; --codemirror-red: #f50; --codemirror-dark-red: #dd1616; --codemirror-purple: #CD4EF9; --codemirror-pink: #e0e; --codemirror-light-gray: #eee; --codemirror-gray: #84a0a0; } .theme-light .CodeMirror { --codemirror-yellow: #9e8500; --codemirror-light-blue: #008ae7; --codemirror-blue: #0085f9; --codemirror-green: #290; --codemirror-red: #ef4f00; --codemirror-dark-red: #a11; --codemirror-purple: #80c; --codemirror-pink: #ed00ed; --codemirror-light-gray: #858585; --codemirror-gray: #6b8a8a; } .CodeMirror { background-color: var(--wiki-content-background-color); color: var(--wiki-content-text-color) } .CodeMirror .CodeMirror-line::selection, .CodeMirror .CodeMirror-line>span::selection, .CodeMirror .CodeMirror-line>span>span::selection, .CodeMirror .CodeMirror-line::-moz-selection, .CodeMirror .CodeMirror-line>span::-moz-selection, .CodeMirror .CodeMirror-line>span>span::-moz-selection, .CodeMirror .CodeMirror-selected { background: rgba(var(--wiki-content-link-color--rgb), .3); } .CodeMirror-linenumber { color: rgba(var(--wiki-content-text-color--rgb), .6) } .CodeMirror div.CodeMirror-cursor { border-left: 1px solid var(--wiki-content-text-color); } .cm-keyword { color: var(--codemirror-purple) } .cm-def { color: var(--codemirror-blue) } .cm-comment { color: var(--codemirror-yellow) } .cm-variable-2 { color: var(--codemirror-light-blue) } .cm-string { color: var(--codemirror-red) } .cm-atom { color: var(--codemirror-pink) } .cm-number { color: var(--codemirror-green) } .CodeMirror-gutters { background-color: var(--wiki-content-background-color--secondary); border-right-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color) } .cm-mw-matching { background-color: var(--codemirror-yellow) } .cm-mw-skipformatting { background-color: var(--codemirror-light-blue) } .cm-mw-list { color: var(--codemirror-blue) } .cm-mw-doubleUnderscore, .cm-mw-hr, .cm-mw-signature { background-color: var(--wiki-content-background-color--secondary); color: var(--codemirror-blue) } .cm-mw-indenting { color: var(--codemirror-blue) } .cm-mw-mnemonic { color: var(--codemirror-green) } .cm-mw-comment { color: var(--codemirror-gray) } .cm-mw-apostrophes-bold, .cm-mw-apostrophes-italic, .cm-mw-section-header { color: var(--codemirror-blue) } .cm-mw-template, .cm-mw-template-argument-name, .cm-mw-template-bracket, .cm-mw-template-delimiter, .cm-mw-template-name { color: var(--codemirror-purple); } .cm-mw-templatevariable, .cm-mw-templatevariable-bracket, .cm-mw-templatevariable-delimiter, .cm-mw-templatevariable-name { color: var(--codemirror-red) } .cm-mw-parserfunction-bracket, .cm-mw-parserfunction-delimiter, .cm-mw-parserfunction-name { color: var(--codemirror-dark-red) } .cm-mw-exttag-attribute, .cm-mw-exttag-bracket, .cm-mw-exttag-name, .cm-mw-htmltag-attribute, .cm-mw-htmltag-bracket, .cm-mw-htmltag-name { color: var(--codemirror-green) } .cm-mw-link, .cm-mw-link-pagename { color: var(--wiki-content-link-color) } .cm-mw-link-tosection { color: var(--codemirror-blue) } .cm-mw-extlink, .cm-mw-extlink-bracket, .cm-mw-extlink-protocol, .cm-mw-free-extlink, .cm-mw-free-extlink-protocol, .cm-mw-link-bracket, .cm-mw-link-delimiter { color: var(--wiki-content-link-color) } .cm-mw-table-bracket, .cm-mw-table-definition, .cm-mw-table-delimiter { color: var(--codemirror-pink) } .cm-mw-matchingbracket { background-color: var(--wiki-content-background-color--secondary); box-shadow: inset 0 0 1px 1px var(--wiki-content-link-color); font-weight: bold; } /* VisualEditor: Fix broken toolbar layout */ .oo-ui-toolbar { clear: none; } .ve-init-mw-desktopArticleTarget-toolbar-open > .oo-ui-toolbar-bar > div:nth-child(4) { display: none; } .ve-ui-toolbar-floating > .oo-ui-toolbar-bar { top: 35px; } /************* * End editor * **************/ /**************** * Tabber styles * *****************/ .tabber__tab, .tabber__tab:visited { color:var(--wiki-content-link-color); } .tabber__tab:hover, .tabber__tab:hover:visited, .tabber__tab[aria-selected="true"], .tabber__tab[aria-selected="true"]:visited { color: var(--wiki-content-text-color); } .tabber__indicator { background: var(--wiki-content-link-color); } .tabber__header__prev::after, .tabber__header__next::after { filter: var(--wiki-icon-general-filter); } /******************** * End Tabber styles * *********************/ /******************** * icon list styles * *********************/ .icon-list { display: grid; /** Remove this column configuration if problems arise **/ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } .icon-list-inline > span.custom-icon + span.custom-icon:before { content: "\ "; white-space: pre; } .icon-list-inline-sentence > span.custom-icon + span.custom-icon:not(:first-child, :last-child):before { content: ",\ "; white-space: pre; } .icon-list-inline-sentence > span.custom-icon + span.custom-icon:is(:last-child):not(:first-child):before { content: " and " } span.custom-icon { display: inline; } span.custom-icon-image { position: relative; display: inline-block; } /* To add quality icon on items */ .custom-icon-image.quality-super::before { content: url('https://lkg.wiki.gg/images/1/13/Super_item.png'); position: absolute; z-index: 999; top: 0; right: 0; display: flex; } /* Downscale images that have been upscaled due to info-icon min-size */ .custom-icon-image.upscaled-16 img { width: 16px; } .custom-icon-image.upscaled-24 img { width: 24px; } .custom-icon-image.upscaled-32 img { width: 32px; } .custom-icon-image.upscaled-40 img { width: 40px; } .custom-icon-image.upscaled-48 img { width: 48px; } /* Remove excessive padding */ .article-media-thumbnail { margin-bottom: 0 } /* Hidden text for sortable tables */ .sort-value { font-size: 0 } /*************************************** * Various fixes for multi-theme Vector * ****************************************/ .oo-ui-iconElement-icon { filter: var(--wiki-icon-to-link-filter); } .oo-ui-iconElement-icon.oo-ui-icon-reload { filter: brightness(0) var(--wiki-icon-to-link-filter); } fieldset { border-color:var(--wiki-content-border-color); } hr { background-color:var(--wiki-content-border-color); } .CategoryTreeToggle { color:var(--wiki-content-link-color); } input, select { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } input:hover, input:focus, input:active { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } input:focus-visible { outline: 1px solid var(--wiki-content-link-color); } input::file-selector-button, input[type="button"], input[type="submit"] { background-color:var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .vector-body blockquote { border-color:var(--wiki-content-border-color); } ol.references li:target, sup.reference:target { background-color: rgba(var(--wiki-content-link-color--rgb), .1); } /* category bar and filetoc */ .catlinks, ul#filetoc { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } /**/ body .ui-dialog .ui-widget-header { /* we need an important here because the built-in styles have one :( */ background: var(--wiki-content-background-color) !important; border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .ui-widget-header .ui-dialog-titlebar-close .ui-icon-closethick { filter: var(--wiki-icon-general-filter); } .ui-widget-header .ui-dialog-titlebar-close.ui-state-hover { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); } .ui-widget-content { background: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border: 1px solid var(--wiki-content-border-color); } body .ui-button { /* we need an important here because the built-in styles have one. Vector is a mess */ background: var(--wiki-accent-color) !important; border-color: var(--wiki-accent-color) !important; color: var(--wiki-accent-label-color); } body .ui-button:hover, body .ui-button:focus, body .ui-button:active { /* we need an important here because we had to use some above */ background: var(--wiki-accent-color--hover) !important; border-color: var(--wiki-accent-color--hover) !important; color: var(--wiki-accent-label-color); } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { color: var(--wiki-accent-label-color); } #contentSub, #contentSub2 { color:var(--wiki-content-text-mix-color); } /* arrow on redirect pages */ .mw-content-ltr .redirectText li:first-child { padding-left:0; background:none; } .mw-content-ltr .redirectText li:first-child::before { content:''; display:inline-block; width:47px; height:1em; vertical-align: middle; background-image:linear-gradient(transparent,transparent),url(/resources/src/mediawiki.action/images/redirect-ltr.svg?ff441); filter:var(--wiki-icon-general-filter); } /* notifications ("your edit was saved", etc.) */ .mw-notification { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); } .mw-notification .oo-ui-labelElement-label { color:var(--wiki-content-text-color); } .mw-notification .oo-ui-iconElement-icon { filter:unset; } /**/ .mime-type.has-warning { color:var(--wiki-content-text-color); } .oo-ui-image-warning.oo-ui-icon-alert, .mw-ui-icon-alert-warning::before { filter:drop-shadow(0 0 3px #000); } .mw_metadata td, .mw_metadata th { border-color: var(--wiki-content-border-color); } .mw_metadata th { background-color: var(--wiki-content-background-color--secondary); } .mw_metadata td { background-color: var(--wiki-content-background-color); } .mw-datatable td, .mw-datatable th { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); } #mw-allmessagestable tbody:hover td, .mw-datatable tr:hover>td { background-color: var(--wiki-content-background-color--secondary); } #mw-allmessagestable .am_default { background-color: rgba(var(--wiki-accent-color--rgb), .8); color: var(--wiki-accent-label-color); } #mw-allmessagestable .am_actual, #mw-allmessagestable tbody:hover .am_default { background-color: rgba(var(--wiki-accent-color--rgb), .6); } #mw-allmessagestable .am_actual { color: var(--wiki-accent-label-color); } #mw-allmessagestable tbody:hover .am_actual { background-color: rgba(var(--wiki-accent-color--rgb), .5); } .mw-datatable, .mw-json { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: inherit; } .mw-datatable>*>tr>th, .mw-datatable>tr>th, .mw-json>*>tr>th, .mw-json>tr>th { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); padding-bottom: 9px; padding-top: 9px; } .mw-datatable>*>tr>td, .mw-datatable>tr>td, .mw-json>*>tr>td, .mw-json>tr>td { border-color: var(--wiki-content-border-color); } .mw-json tr { background-color: inherit; } .mw-json .mw-json-single-value, .mw-json .mw-json-value, .mw-json .value { background: rgba(var(--wiki-success-color--rgb), .6); } .mw-json .mw-json-empty { background: var(--wiki-content-background-color--secondary); } .mw-message-box, .mw-message-box-warning { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); } .mw-message-box-warning { border-color: var(--wiki-warning-color); border-width: 1px 1px 1px 10px; } .wikitable *, .wikitable :after, .wikitable :before { -webkit-box-sizing: inherit; box-sizing: inherit; } .cargo-pagevalues-tableinfo { background-color: var(--wiki-content-background-color); border-bottom: 1px solid var(--wiki-content-border-color); top: 46px; position: static; /* override sticky in the built-in */ } .cargo-table-diagram .cargo-table-svg .node.entity-name rect { fill: var(--wiki-content-background-color--secondary); fill-opacity: 1; } .cargo-table-diagram .cargo-table-svg .node rect { stroke: var(--wiki-content-border-color); opacity: 1; } .cargo-table-diagram .cargo-table-svg .node text tspan { fill: var(--wiki-content-text-color); } table.cargoTable { color: var(--wiki-content-text-color); } table.cargoTable tbody td, table.cargoTable thead th { border: 1px solid var(--wiki-content-border-color); } table.cargoTable tr:hover { background-color: rgba(var(--wiki-accent-color--rgb), .25); } table.cargoTable thead tr:nth-child(odd), table.cargoTable.noMerge thead tr:nth-child(odd) { background-color: var(--wiki-accent-color); } table.cargoTable tbody tr:nth-child(2n), table.cargoTable.noMerge tbody tr:nth-child(2n) { background-color: var(--wiki-content-background-color); } table.cargoTable tbody tr:nth-child(odd), table.cargoTable.noMerge tbody tr:nth-child(odd) { background-color: var(--wiki-content-background-color--secondary); } table.cargoTable th.headerSort { color:var(--wiki-accent-label-color); } table.cargoTable th.headerSort:hover { color:var(--wiki-accent-label-color); text-decoration:underline; } #mw-content-text div.cargoReplacementTableInfo { background: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); }.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { color:var(--wiki-content-text-color); } table.dataTable tbody tr { background-color:var(--wiki-content-background-color); } table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 { background-color:rgba(var(--wiki-content-background-color--secondary--rgb), 0.75); } table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd, table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); } table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 { background-color:rgba(var(--wiki-content-background-color--rgb), 0.75); } table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { background-color: var(--wiki-content-background-color--secondary); } .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { /* we need this !important to override a built-in one */ color: var(--wiki-content-text-mix-color) !important; } table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td { border-top: 1px solid var(--wiki-content-border-color); } .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { /* we need this !important to override a built-in one */ color: var(--wiki-content-mix-color) !important; border: 1px solid var(--wiki-content-border-color); background-color: var(--wiki-content-background-color); background: linear-gradient(to bottom,var(--wiki-content-background-color) 0%,var(--wiki-content-background-color--secondary) 100%); } div.drilldown-filters-wrapper { background-color: transparent; border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .action-pagevalues tr:nth-of-type(2n) { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); } .action-pagevalues tr:hover { background-image: linear-gradient(rgba(var(--wiki-accent-color--rgb), 0.2), rgba(var(--wiki-accent-color--rgb), 0.2)); } div.specialCargoQuery-extraPane { background: var(--wiki-content-background-color); } div.thumbinner { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .thumbimage { background-color: unset; border: unset; } .oo-ui-panelLayout-framed { border-color:var(--wiki-content-border-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button { background-color: transparent; } .oo-ui-checkboxInputWidget [type="checkbox"] + span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked + span { filter: unset; background-color:rgba(var(--wiki-content-link-color--rgb), 0.05); border-color:rgba(var(--wiki-content-link-color--rgb), 0.75); } .oo-ui-inputWidget-input + .oo-ui-image-invert.oo-ui-icon-check { background-image:none; } .oo-ui-inputWidget-input:checked + .oo-ui-image-invert.oo-ui-icon-check::before { position:absolute; width:100%; height:100%; top:0; left:0; background-image: url(/load.php?modules=oojs-ui-core.icons&image=check&variant=invert&format=rasterized&skin=vector&version=y9f1k); background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3E check %3C/title%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M7 14.2 2.8 10l-1.4 1.4L7 17 19 5l-1.4-1.4z%22/%3E%3C/g%3E%3C/svg%3E"); content:''; pointer-events: none; filter:var(--wiki-icon-general-filter); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover+span { border-color: var(--wiki-content-link-color); filter: unset; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span { background-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:focus+span { box-shadow: none; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active+span { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus+span { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); outline: 1px solid transparent; } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span { background-color: var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked:focus+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:hover+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:active+span, .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:indeterminate:focus+span { background-color: rgba(var(--wiki-content-link-color--rgb), 0.5); border-color: var(--wiki-content-link-color); } .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active + span { background-color: rgba(var(--wiki-content-link-color--rgb), 0.5) } .oo-ui-image-invert.oo-ui-icon-check { background:none; position:relative; } .oo-ui-inputWidget-input:checked + .oo-ui-image-invert.oo-ui-icon-check::before { position:absolute; width:100%; height:100%; top:0; left:0; background-image: url(/load.php?modules=oojs-ui-core.icons&image=check&variant=invert&format=rasterized&skin=vector&version=y9f1k); background-image: linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3E check %3C/title%3E%3Cg fill=%22%23fff%22%3E%3Cpath d=%22M7 14.2 2.8 10l-1.4 1.4L7 17 19 5l-1.4-1.4z%22/%3E%3C/g%3E%3C/svg%3E"); content:''; pointer-events: none; filter:var(--wiki-icon-general-filter); } .oo-ui-indicatorElement-indicator { filter: var(--wiki-icon-to-link-filter); } .mw-rcfilters-ui-savedLinksListWidget-placeholder.oo-ui-optionWidget .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:not(.oo-ui-tagItemWidget-fixed) { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:hover { color: var(--wiki-content-text-color--hover); } .oo-ui-tagItemWidget.oo-ui-widget-enabled:focus { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .mw-rcfilters-ui-savedLinksListWidget-menu .mw-rcfilters-ui-savedLinksListItemWidget { color: var(--wiki-content-text-color); padding: 8px 6px; -webkit-transition: color .3s, background-color .3s; transition: color .3s, background-color .3s; } .mw-rcfilters-ui-savedLinksListWidget-menu .mw-rcfilters-ui-savedLinksListItemWidget:hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15); color: var(--wiki-content-link-color); } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined { background-color: transparent; } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-content-border-color); } .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle+.mw-rcfilters-ui-table, .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle.mw-rcfilters-ui-filterTagMultiselectWidget-emphasize { background-color: var(--wiki-content-background-color--secondary); } .mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget { border-color: var(--wiki-content-border-color); padding: 0; } .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-savedQueryTitle { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button>.oo-ui-labelElement-label { color: var(--wiki-content-link-color); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button>.oo-ui-labelElement-label:hover { color: var(--wiki-content-link-color--hover); } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button:before { content: "[" } .mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton .oo-ui-buttonElement-button:after { content: "]" } .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color); } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-dynamic-color--inverted); } .mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters { color: rgba(var(--wiki-content-text-color--rgb), .6) } .mw-rcfilters-ui-filterMenuSectionOptionWidget { background-color: var(--wiki-content-background-color) } .oo-ui-menuSelectWidget { background-color: var(--wiki-content-background-color--secondary); } .mw-rcfilters-ui-filterMenuSectionOptionWidget-header-title.oo-ui-labelElement-label { color: var(--wiki-content-text-color) } .mw-rcfilters-ui-filterMenuHeaderWidget-header { background-color: var(--wiki-content-background-color); border-bottom-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-filterMenuHeaderWidget-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-itemMenuOptionWidget:not(:last-child):not(.mw-rcfilters-ui-itemMenuOptionWidget-identifier-talk) { border-bottom-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces { border-top-color: var(--wiki-content-border-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-title, .mw-rcfilters-ui-itemMenuOptionWidget:hover, .mw-rcfilters-ui-itemMenuOptionWidget:hover .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget:hover .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-link-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span, .mw-rcfilters-ui-itemMenuOptionWidget:hover .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span { border-color: var(--wiki-content-link-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-optionWidget-selected, .mw-rcfilters-ui-itemMenuOptionWidget:hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15) } .mw-rcfilters-ui-itemMenuOptionWidget-excludeLabel, .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-text-color); } .mw-rcfilters-ui-itemMenuOptionWidget-label-desc { color: rgba(var(--wiki-content-text-color--rgb), .6); } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected:hover, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected):hover { background-color: rgba(var(--wiki-content-link-color--rgb), .15) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-title, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .mw-rcfilters-ui-itemMenuOptionWidget-label-title { color: var(--wiki-content-text-color) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .mw-rcfilters-ui-itemMenuOptionWidget-label-desc, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .mw-rcfilters-ui-itemMenuOptionWidget-label-desc { color: rgba(var(--wiki-content-text-color--rgb), .6) } .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted.oo-ui-optionWidget-selected .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span, .mw-rcfilters-ui-itemMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type=checkbox]+span { border-color: var(--wiki-content-text-color) } .mw-rcfilters-ui-viewSwitchWidget label.oo-ui-labelWidget { color: rgba(var(--wiki-content-text-color--rgb), .6) } .oo-ui-tagItemWidget.oo-ui-widget-enabled, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color: transparent; color: var(--wiki-content-text-color); border-color:var(--wiki-content-text-mix-color); } .mw-changeslist-legend, .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-rcfilters-ui-menuSelectWidget-footer { background-color: var(--wiki-content-text-mix-color-95); } .mw-rcfilters-ui-filterMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) { background-color: rgba(var(--wiki-body-dynamic-color--rgb), 0.1); } .oo-ui-iconElement-icon.mw-rcfilters-ui-filterItemHighlightButton-circle { filter:unset; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .mw-rcfilters-ui-tagItemWidget-selected.oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); border-color:var(--wiki-content-link-color); } .mw-rcfilters-ui-tagItemWidget.oo-ui-flaggedElement-muted.oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-labelElement-label { color: rgba(var(--wiki-content-text-color--rgb), .76); } .mw-rcfilters-ui-tagItemWidget-popup-content { color: rgba(var(--wiki-content-text-color--rgb), .75); } .oo-ui-popupWidget-anchored-bottom .oo-ui-popupWidget-anchor:before { border-top-color: var(--wiki-content-border-color); } .oo-ui-popupWidget-anchored-bottom .oo-ui-popupWidget-anchor:after { border-top-color: var(--wiki-content-background-color--secondary); } .unpatrolled { color: var(--wiki-alert-color); } .autocomment, .autocomment a, .autocomment a:visited { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } .autocomment, .autocomment a, .autocomment a:visited { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } /* Recent changes filter highlighting */ .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c1, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c1 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c1.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c1.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #1c283f; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c2, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c2 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c2.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c2.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #0f3128; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c3, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c3 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c3.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c3.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #352c10; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c4, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c4 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c4.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c4.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #411d0c; } .view-dark .mw-rcfilters-ui-changesListWrapperWidget li.mw-rcfilters-highlight-color-c5, .view-dark .mw-rcfilters-ui-changesListWrapperWidget .mw-rcfilters-highlight-color-c5 tr:first-child, .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c5.mw-rcfilters-ui-highlights-enhanced-toplevel:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+2)), .view-dark .mw-rcfilters-ui-changesListWrapperWidget tr.mw-rcfilters-highlight-color-c5.mw-rcfilters-ui-highlights-enhanced-nested:not(.mw-rcfilters-ui-changesListWrapperWidget-enhanced-grey) td:not(:nth-child(-n+4)) { background-color: #3f0f0f; } .mw-icon-arrow-collapsed, .mw-collapsible-arrow.mw-collapsible-toggle-collapsed { filter:brightness(75%) var(--wiki-icon-general-filter); } /* The below rules fix an error caused by the above rule because the toggles in the edit footer have text and an arrow in the same element, so the text gets inverted when it shouldn't be */ .mw-editfooter-toggler { position:relative; filter:unset; background:none; } .mw-editfooter-toggler::before { position:absolute; left:0; top:0; background-repeat: no-repeat; background-position: left center; width:12px; height:100%; content:''; filter:brightness(75%) var(--wiki-icon-general-filter); } .mw-editfooter-toggler.mw-icon-arrow-collapsed::before { background-image: url(/resources/src/mediawiki.icon/images/arrow-collapsed-ltr.svg?40e9a); } .mw-editfooter-toggler.mw-icon-arrow-expanded::before { background-image: url(/resources/src/mediawiki.icon/images/arrow-expanded.svg?d0685); } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled { background-color: transparent; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { -webkit-transition: border-color 300ms, box-shadow 300ms; transition: border-color 300ms, box-shadow 300ms; background-color: var(--wiki-content-background-color--secondary) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-tagMultiselectWidget-focus .oo-ui-tagMultiselectWidget-handle { box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); outline: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined:hover .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-content-link-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid .oo-ui-tagMultiselectWidget-handle, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid:hover .oo-ui-tagMultiselectWidget-handle { border-color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagMultiselectWidget-handle { background-color: var(--wiki-content-background-color--secondary); border-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-inputWidget-input { border-top-left-radius: 0; border-top-right-radius: 0 } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { border-color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { color: var(--wiki-alert-color) } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-handle { opacity: 0.5 } .oo-ui-tagMultiselectWidget-handle .oo-ui-tagMultiselectWidget-group > input { color:var(--wiki-content-text-color); } .oo-ui-tagMultiselectWidget .oo-ui-inputWidget-input { color: inherit; background: transparent; font-family: inherit } .oo-ui-textInputWidget .oo-ui-inputWidget-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .oo-ui-dropdownWidget.oo-ui-widget-disabled .oo-ui-dropdownWidget-handle, .oo-ui-textInputWidget.oo-ui-widget-disabled .oo-ui-inputWidget-input, .oo-ui-dropdownWidget.oo-ui-widget-disabled .oo-ui-dropdownWidget-handle { background: var(--wiki-content-text-mix-color-95); color: rgba(var(--wiki-content-text-color--rgb), 0.25); text-shadow:none; border-color:var(--wiki-content-text-mix-color); } .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input::placeholder { color:rgba(var(--wiki-content-text-color--rgb), 0.4); } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:hover { background-color: var(--wiki-content-link-color); border-color: var(--wiki-content-link-color); } .oo-ui-outlineOptionWidget.oo-ui-optionWidget-selected, .oo-ui-outlineOptionWidget.oo-ui-optionWidget-highlighted { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color); } .oo-ui-bookletLayout-outlinePanel { padding: 7px 0; } .oo-ui-processDialog-content .oo-ui-window-head, .oo-ui-processDialog-content .oo-ui-window-foot, .oo-ui-messageDialog-content > .oo-ui-window-head, .oo-ui-messageDialog-content > .oo-ui-window-foot { outline-color: var(--wiki-content-border-color); } .oo-ui-processDialog-actions-safe .oo-ui-widget-enabled.oo-ui-iconElement:not(.oo-ui-labelElement) > .oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-background-color); border-right-color: var(--wiki-content-border-color); } .oo-ui-messageDialog-title { color: var(--wiki-heading-color); } /* OAuth authorisation dialog */ #mw-mwoauth-authorize-form { color: inherit; } .oo-ui-toolbar-bar, .oo-ui-popupToolGroup-tools, .oo-ui-listToolGroup-tools .oo-ui-tool.oo-ui-widget-enabled:hover { background-color:var(--wiki-content-background-color--secondary); color:var(--wiki-content-text-color); } .oo-ui-toolbar-actions .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover { border-right-color:var(--wiki-content-border-color); } .oo-ui-menuToolGroup-tools .oo-ui-tool.oo-ui-tool-active, .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:active, .oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active > .oo-ui-tool-link, .oo-ui-tool.oo-ui-widget-enabled.oo-ui-popupToolGroup-active > .oo-ui-tool-link, .oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle { background-color: var(--wiki-content-background-color); color: var(--wiki-content-link-color); } .oo-ui-tool.oo-ui-widget-enabled .oo-ui-tool-link { /* we remove the transition here because it causes the hard-coded color to flash briefly */ transition:none; } .oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle:hover { color:var(--wiki-content-link-color); } .oo-ui-popupToolGroup-tools .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title { color:var(--wiki-content-link-color); } .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover, .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:hover { background-color:rgba(var(--wiki-content-link-color--rgb), 0.15); } .oo-ui-menuToolGroup, .oo-ui-popupToolGroup-tools { border-color:var(--wiki-content-border-color); } .oo-ui-toolbar-position-top > .oo-ui-toolbar-bar { border-color: var(--wiki-content-border-color); box-shadow: 0 1px 1px 0 rgba(var(--wiki-content-dynamic-color--rgb),0.1); } .oo-ui-barToolGroup-tools.oo-ui-toolGroup-enabled-tools .oo-ui-tool.oo-ui-widget-disabled.oo-ui-flaggedElement-primary > .oo-ui-tool-link, .oo-ui-barToolGroup-tools.oo-ui-toolGroup-disabled-tools .oo-ui-tool.oo-ui-flaggedElement-primary > .oo-ui-tool-link { background-color: var(--wiki-content-text-mix-color); border-color: var(--wiki-content-text-mix-color); } .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link { background-color:var(--wiki-accent-color); color:var(--wiki-accent-label-color); } .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link:hover { background-color:var(--wiki-accent-color--hover); } .oo-ui-buttonElement-frameless>.oo-ui-buttonElement-button, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color) } .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-content-text-color--hover) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { color: var(--wiki-content-text-color) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-content-text-color--hover) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-destructive > .oo-ui-buttonElement-button{ color: var(--wiki-alert-color) } .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-frameless.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus { color: var(--wiki-alert-color--hover) } .oo-ui-buttonElement-frameless>.oo-ui-buttonElement-button { border: 1px solid transparent } .oo-ui-buttonElement-frameless>button.oo-ui-buttonElement-button { color: inherit } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color--hover); border-color: var(--wiki-accent-color--hover) } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button { background-color: #bf0017; border-color: #bf0017; color: #fff } .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-destructive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: #59000b; border-color: #59000b } .oo-ui-messageWidget.oo-ui-messageWidget-block.oo-ui-flaggedElement-warning { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:focus, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active.oo-ui-flaggedElement-progressive.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active>.oo-ui-buttonElement-button { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active>.oo-ui-buttonElement-button, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active>.oo-ui-buttonElement-button { color: var(--wiki-content-link-color) } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button:hover { background-color: transparent; } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-destructive>.oo-ui-buttonElement-button:hover { background-color: var(--wiki-content-dynamic-color--inverted); } .mw-htmlform-ooui .mw-htmlform-matrix tbody tr:nth-child(2n) td, .mw-htmlform-ooui .mw-htmlform-matrix tbody tr:hover td { background-color: var(--wiki-content-background-color--secondary); } .oo-ui-popupWidget-popup { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color:var(--wiki-content-text-color); } .mw-ui-button { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color: var(--wiki-content-link-color); border-color: var(--wiki-content-border-color); } .mw-ui-button:not(:disabled):visited { color: var(--wiki-content-link-color); } .mw-ui-button:not(:disabled):hover { background-color: var(--wiki-content-text-mix-color-95); border-color: var(--wiki-content-border-color); color: var(--wiki-content-link-color--hover); } .mw-ui-button:not(:disabled):focus { border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-ui-button:not(:disabled):active, .mw-ui-button:not(:disabled).is-on { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-link-color); } .mw-ui-icon-before::before { filter: var(--wiki-icon-to-link-filter); } .oo-ui-windowManager-modal > .oo-ui-dialog > .oo-ui-window-frame { background-color: var(--wiki-content-background-color); color: var(--wiki-content-text-color); border-color: var(--wiki-content-border-color); } .oo-ui-windowManager-modal>.oo-ui-dialog { background-color: rgba(var(--wiki-content-dynamic-color--inverted--rgb), 0.5); } .oo-ui-windowManager-modal.oo-ui-windowManager-floating > .oo-ui-dialog > .oo-ui-window-frame { border-color:var(--wiki-content-border-color); } .oo-ui-messageDialog-message { color: var(--wiki-content-text-color); } .oo-ui-buttonElement-framed:not(.oo-ui-flaggedElement-primary):not(.oo-ui-buttonElement-active) > .oo-ui-buttonElement-button { color: var(--wiki-content-text-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button { color: var(--wiki-content-link-color); border-color:rgba(var(--wiki-content-link-color--rgb), 0.5); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-link-color--hover); border-color:var(--wiki-content-link-color); box-shadow:inset 0 0 3px var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled>.oo-ui-buttonElement-button:active, .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-pressed > .oo-ui-buttonElement-button { background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-link-color--hover); border-color: var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:focus { border-color: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .oo-ui-buttonElement-framed.oo-ui-widget-disabled > .oo-ui-buttonElement-button { background-color: var(--wiki-content-text-mix-color); border-color: var(--wiki-content-text-mix-color); } /* Date picker */ .mw-widget-dateInputWidget-handle { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); } .mw-widget-dateInputWidget.oo-ui-widget-enabled .mw-widget-dateInputWidget-handle:hover { border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-widget-dateInputWidget.oo-ui-widget-enabled .mw-widget-dateInputWidget-handle > .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget { border-color: var(--wiki-content-border-color); } .mw-widget-dateInputWidget-calendar { background-color: var(--wiki-content-background-color); } .mw-widget-calendarWidget-header .oo-ui-labelElement-label { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-day-heading { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } .mw-widget-calendarWidget-day { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-day-additional { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } .mw-widget-calendarWidget-month { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-year { color: var(--wiki-content-text-color); } .mw-widget-calendarWidget-item-selected { color: #fff; } .mw-widgets-datetime-calendarWidget:focus { border-color: var(--wiki-content-border-color); box-shadow: none; } .mw-widgets-datetime-calendarWidget-grid { overflow-x: initial; } .mw-widgets-datetime-dateTimeInputWidget-handle { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-widgets-datetime-dateTimeInputWidget.oo-ui-widget-enabled .mw-widgets-datetime-dateTimeInputWidget-handle:hover { border-color: var(--wiki-content-border-color); } .mw-widgets-datetime-dateTimeInputWidget.oo-ui-widget-enabled .mw-widgets-datetime-dateTimeInputWidget-editField:hover { background-color: var(--wiki-content-background-color); } .mw-widgets-datetime-calendarWidget { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); } .mw-widgets-datetime-calendarWidget-grid .mw-widgets-datetime-calendarWidget-cell.mw-widgets-datetime-calendarWidget-extra .oo-ui-buttonElement-button .oo-ui-labelElement-label { color: rgba(var(--wiki-content-text-color--rgb), 0.55); } /* Unpatrolled page creations on Special:NewPages */ .not-patrolled { background-color: rgba(var(--wiki-warning-color--rgb), 0.16); } pre, code, .mw-code { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-templatedata-doc-param-alias { color:var(--wiki-content-text-mix-color); } .mw-highlight, .view-light .mw-highlight { --pygments-background: var(--wiki-content-background-color--secondary); --pygments-err: #db0000; --pygments-c: #3a7575; --pygments-k: #008000; --pygments-o: #666; --pygments-ch: #3a7575; --pygments-cm: #3a7575; --pygments-cp: #986200; --pygments-cpf: #3a7575; --pygments-c1: #3a7575; --pygments-cs: #3a7575; --pygments-gd: #a00000; --pygments-gr: #db0000; --pygments-gh: #000080; --pygments-gi: #008100; --pygments-go: #6e6e6e; --pygments-gp: #000080; --pygments-gu: #800080; --pygments-gt: #04d; --pygments-kc: #008000; --pygments-kd: #008000; --pygments-kn: #008000; --pygments-kp: #008000; --pygments-kr: #008000; --pygments-kt: #b00040; --pygments-m: #666; --pygments-s: #ba2121; --pygments-na: #647421; --pygments-nb: #008000; --pygments-nc: #00f; --pygments-no: #800; --pygments-nd: #a412ff; --pygments-ni: #6d6d6d; --pygments-ne: #c9352e; --pygments-nf: #00f; --pygments-nl: #727200; --pygments-nn: #00f; --pygments-nt: #008000; --pygments-nv: #19177c; --pygments-ow: #a412ff; --pygments-w: #6e6e6e; --pygments-mb: #666; --pygments-mf: #666; --pygments-mh: #666; --pygments-mi: #666; --pygments-mo: #666; --pygments-sa: #ba2121; --pygments-sb: #ba2121; --pygments-sc: #ba2121; --pygments-dl: #ba2121; --pygments-sd: #ba2121; --pygments-s2: #ba2121; --pygments-se: #a55a1e; --pygments-sh: #ba2121; --pygments-si: #af4d74; --pygments-sx: #008000; --pygments-sr: #af4d74; --pygments-s1: #ba2121; --pygments-ss: #19177c; --pygments-bp: #008000; --pygments-fm: #00f; --pygments-vc: #19177c; --pygments-vg: #19177c; --pygments-vi: #19177c; --pygments-vm: #19177c; --pygments-il: #666; } .view-dark .mw-highlight { --pygments-background: var(--wiki-content-background-color--secondary); --pygments-err: #fe4242; --pygments-c: #4b9797; --pygments-k: #00a300; --pygments-o: #898989; --pygments-ch: #4b9797; --pygments-cm: #4b9797; --pygments-cp: #c17d00; --pygments-cpf: #4b9797; --pygments-c1: #4b9797; --pygments-cs: #4b9797; --pygments-gd: #ff3f3f; --pygments-gr: #fe4242; --pygments-gh: #7a7aff; --pygments-gi: #00a000; --pygments-go: #8a8a8a; --pygments-gp: #7a7aff; --pygments-gu: #f500f5; --pygments-gt: #4e84fe; --pygments-kc: #00a300; --pygments-kd: #00a300; --pygments-kn: #00a300; --pygments-kp: #00a300; --pygments-kr: #00a300; --pygments-kt: #fe357e; --pygments-m: #898989; --pygments-s: #e25e5e; --pygments-na: #80932a; --pygments-nb: #00a300; --pygments-nc: #7a7afe; --pygments-no: #ff4040; --pygments-nd: #bf5aff; --pygments-ni: #999; --pygments-ne: #da655f; --pygments-nf: #7a7afe; --pygments-nl: #a0a000; --pygments-nn: #7a7afe; --pygments-nt: #00a300; --pygments-nv: #8381e7; --pygments-ow: #bf5aff; --pygments-w: #bbb; --pygments-mb: #898989; --pygments-mf: #898989; --pygments-mh: #898989; --pygments-mi: #898989; --pygments-mo: #898989; --pygments-sa: #e25e5e; --pygments-sb: #e25e5e; --pygments-sc: #e25e5e; --pygments-dl: #e25e5e; --pygments-sd: #e25e5e; --pygments-s2: #e25e5e; --pygments-se: #d07125; --pygments-sh: #e25e5e; --pygments-si: #c17492; --pygments-sx: #00a300; --pygments-sr: #c17492; --pygments-s1: #e25e5e; --pygments-ss: #8381e7; --pygments-bp: #00a300; --pygments-fm: #7a7afe; --pygments-vc: #8381e7; --pygments-vg: #8381e7; --pygments-vi: #8381e7; --pygments-vm: #8381e7; --pygments-il: #898989; } .mw-highlight .err { border-color: var(--pygments-err) } .mw-highlight .c { color: var(--pygments-c) } .mw-highlight .k { color: var(--pygments-k) } .mw-highlight .o { color: var(--pygments-o) } .mw-highlight .ch { color: var(--pygments-ch) } .mw-highlight .cm { color: var(--pygments-cm) } .mw-highlight .cp { color: var(--pygments-cp) } .mw-highlight .cpf { color: var(--pygments-cpf) } .mw-highlight .c1 { color: var(--pygments-c1) } .mw-highlight .cs { color: var(--pygments-cs) } .mw-highlight .gd { color: var(--pygments-gd) } .mw-highlight .gr { color: var(--pygments-gr) } .mw-highlight .gh { color: var(--pygments-gh) } .mw-highlight .gi { color: var(--pygments-gi) } .mw-highlight .go { color: var(--pygments-go) } .mw-highlight .gp { color: var(--pygments-gp) } .mw-highlight .gu { color: var(--pygments-gu) } .mw-highlight .gt { color: var(--pygments-gt) } .mw-highlight .kc { color: var(--pygments-kc) } .mw-highlight .kd { color: var(--pygments-kd) } .mw-highlight .kn { color: var(--pygments-kn) } .mw-highlight .kp { color: var(--pygments-kp) } .mw-highlight .kr { color: var(--pygments-kr) } .mw-highlight .kt { color: var(--pygments-kt) } .mw-highlight .m { color: var(--pygments-m) } .mw-highlight .s { color: var(--pygments-s) } .mw-highlight .na { color: var(--pygments-na) } .mw-highlight .nb { color: var(--pygments-nb) } .mw-highlight .nc { color: var(--pygments-nc) } .mw-highlight .no { color: var(--pygments-no) } .mw-highlight .nd { color: var(--pygments-nd) } .mw-highlight .ni { color: var(--pygments-ni) } .mw-highlight .ne { color: var(--pygments-ne) } .mw-highlight .nf { color: var(--pygments-nf) } .mw-highlight .nl { color: var(--pygments-nl) } .mw-highlight .nn { color: var(--pygments-nn) } .mw-highlight .nt { color: var(--pygments-nt) } .mw-highlight .nv { color: var(--pygments-nv) } .mw-highlight .ow { color: var(--pygments-ow) } .mw-highlight .w { color: var(--pygments-w) } .mw-highlight .mb { color: var(--pygments-mb) } .mw-highlight .mf { color: var(--pygments-mf) } .mw-highlight .mh { color: var(--pygments-mh) } .mw-highlight .mi { color: var(--pygments-mi) } .mw-highlight .mo { color: var(--pygments-mo) } .mw-highlight .sa { color: var(--pygments-sa) } .mw-highlight .sb { color: var(--pygments-sb) } .mw-highlight .sc { color: var(--pygments-sc) } .mw-highlight .dl { color: var(--pygments-dl) } .mw-highlight .sd { color: var(--pygments-sd) } .mw-highlight .s2 { color: var(--pygments-s2) } .mw-highlight .se { color: var(--pygments-se) } .mw-highlight .sh { color: var(--pygments-sh) } .mw-highlight .si { color: var(--pygments-si) } .mw-highlight .sx { color: var(--pygments-sx) } .mw-highlight .sr { color: var(--pygments-sr) } .mw-highlight .s1 { color: var(--pygments-s1) } .mw-highlight .ss { color: var(--pygments-ss) } .mw-highlight .bp { color: var(--pygments-bp) } .mw-highlight .fm { color: var(--pygments-fm) } .mw-highlight .vc { color: var(--pygments-vc) } .mw-highlight .vg { color: var(--pygments-vg) } .mw-highlight .vi { color: var(--pygments-vi) } .mw-highlight .vm { color: var(--pygments-vm) } .mw-highlight .il { color: var(--pygments-il) } .mw-highlight pre { background: var(--pygments-background) } .mw-content-ltr.mw-highlight-lines pre, .mw-content-ltr.content .mw-highlight-lines pre { padding-left: 3.5em; box-shadow: inset 2.75em 0 0 var(--wiki-content-dynamic-color--inverted); } .mw-highlight .hll { background-color: rgba(var(--wiki-accent-color--rgb), .2) } .mw-apisandbox-toolbar { background: var(--wiki-content-background-color--secondary); top: 35px; } /* special:replacetext */ .ext-replacetext-searchoptions { background-color: transparent; border: 1px solid var(--wiki-content-border-color); } .ext-replacetext-searchoptions .ext-replacetext-divider { border-bottom: 1px solid var(--wiki-content-border-color); } /**/ .view-dark textarea { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .view-dark textarea:focus-visible { outline-color: var(--wiki-content-link-color); outline-style: solid; } /* make math formulas legible on dark theme */ .mwe-math-fallback-image-inline, .mwe-math-fallback-image-display { filter: var(--wiki-icon-general-filter); } /* search bar */ #searchInput { background-color: var(--wiki-content-background-color--secondary); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); box-shadow: none; } #searchInput:focus, #simpleSearch:hover #searchInput, #simpleSearch:hover #searchInput:focus { border-color: var(--wiki-content-link-color); box-shadow: none; } #searchButton { filter: var(--wiki-icon-to-link-filter); } .vector-search-box-input::placeholder { color:var(--wiki-content-text-mix-color); } /* Search suggestions */ .suggestions-results, .suggestions-special { background-color: var(--wiki-content-background-color--secondary); } .suggestions a.mw-searchSuggest-link, .suggestions a.mw-searchSuggest-link:hover, .suggestions a.mw-searchSuggest-link:active, .suggestions a.mw-searchSuggest-link:focus { color: var(--wiki-content-text-color); } .suggestions-result { color: var(--wiki-content-link-color); } .suggestions-result-current { background-color: var(--wiki-content-link-color); color: var(--wiki-content-link-label-color); } .suggestions-special .special-label { color: var(--wiki-content-text-mix-color); } .suggestions-special.suggestions-result-current .special-label { color:var(--wiki-content-link-label-color); } .suggestions-special .special-query { color: var(--wiki-link-label-color); } /* search page */ fieldset#mw-searchoptions { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); border-color: var(--wiki-content-border-color); } #mw-searchoptions .divider { border-color: var(--wiki-content-border-color); } .mw-search-profile-tabs { background-color: rgba(var(--wiki-content-background-color--secondary--rgb), 0.5); border: 1px solid var(--wiki-content-border-color); margin-top: 1em; } .mw-search-profile-tabs div.search-types ul li.current a { color: var(--wiki-content-text-color); } /* invert the help icon on the helplink */ #mw-indicator-mw-helplink a { background-image: none; } #mw-indicator-mw-helplink a::before { background-image: url(/resources/src/mediawiki.helplink/images/helpNotice.svg?46d34); background-position: left center; background-repeat: no-repeat; display: inline-block; vertical-align: middle; height: 20px; padding-left: 25px; content: ""; } #mw-indicator-mw-helplink a::before { filter: var(--wiki-icon-to-link-filter); } /**/ /* Login/register page */ .mw-number-text { color:var(--wiki-content-text-mix-color); } .mw-body-content .mw-number-text h3 { color:var(--wiki-heading-color); } .mw-number-text.icon-edits, .mw-number-text.icon-pages, .mw-number-text.icon-contributors { position:relative; background:none; } .mw-number-text.icon-edits::before, .mw-number-text.icon-pages::before, .mw-number-text.icon-contributors::before { position:absolute; width:95px; height:100%; left:0; top:0; content:''; filter:brightness(0) var(--wiki-icon-general-filter); } .mw-number-text.icon-edits::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABLCAYAAADnAAD1AAACrUlEQVR4AWL4//8/oH170LEsiKIwXGPbtm0EY9s2g7bdjzh4oVnjyslKVZ3hSu+d5L/c0Xdx/Bt5jjCyAR3QAd9/+DhSW4oeoYmJGQdM4HWjYfQKTXTA8pZFeIgjOmA5Hkd0wDwe6TWa6IAcr4eA5RAdEC0neKWIDoieFcMRRPOAaDJ6+4uITxzwJ+KbmnjdaKkDliISPIv/gcvRxsT7kzgix7MGuBz1ooFyRIq3xOJ64ArUG0EMoMV5RI5nAJDjRV1Go1DIIL7meJKAAngc8Qn/tgoACuCNRtfRJhQyGQLkeJcI3u3oP3GzA5bjjYnwEEE0Acjx+urgEcRNVgFX1sUjdaHF9gA53sW/jScFKIC3SH8hIo5nDXAVwbtA8O6U4+kD6uPpA2rhWQNcXYh3N4HXSfAMAHK8838BTwBQF28hCpKAAnj3SvCsAa4heOdU8NQB5fGUAfXxhAEZ3lmCdz+B18Hx9ABN46kBrv1DeAtQsAZYivdAB08AMMLrJ3hBHU8BkOGdqcyMLcCbj4I1QH08YUCGd0kbTwCQ4MW1oFkR3kM5PAHAdVU8gjhPEk8AkOKRBjN481AwAxjhDRCM4Rq1EzwTgAzvGtoqiicAmMcbjRZI4wkATiP/eVe/4QU0DvXJ4gkAHq9gNEV4cdPRRtQjgycAOA51VkAOoECaiF5J4QkA7iVnuI+vgTcXBauAo1BjBeU0mZuCXlfm2gieOcCN5KzPadH7s9EF1CeJJwD4lKy2BLQM3UFDaFgSTwBwKcE5il6Q1wmeA95KQLGafuI54Ay+I4D2Fm1HY2QwBADPZdCG0EO0Wg5CAHAi6k1ce3E1fdDHAQ8TuG50Ml6F4TngGNQawTWjg2iCPoAG4I5vcG/QVrLDIJMDnvyNBYMDeg7ogA7ogJ4DOqBmnwD4A/itR9A4HwAAAABJRU5ErkJggg==) no-repeat left center; } .mw-number-text.icon-pages::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABLCAYAAADnAAD1AAAByUlEQVR4Ae3XQ6JcQRhH8Rs7mYWT2LZt25rEtpNvicGCOid51lWhX3X/B78F1ClnjUZDHChCDgVUQAVUwF+//zTbaEzwJKuqFQJOwVOYB0fSDege8RnMg8OxA47HhMhGho4YM+BHWGTXMApZP1NxAqdKuIS3DhETC5gT0cEonM+LmH7A8BHHF4zhUMyAr3DKswt4ARvCVQ8RL8FyHIoV8DqyAEbidMCIu2AFDqUbEBiLd4EiroOVcDDdgMBJWI4rNSOugpV0MOWAa2EBIq6HVXAw1YDzYQEiboVVdCDFgLNhASIegtWwP7WAM2AVXC4Z8SKsho+pBZwDCxDxIZ7hGo5iN7ZgG/bjOj61QsB5sAARxyArMA7nUw+4GuYQcaSHv/PrlAPuhDnYh8zR9ZQDnoF1+ooXuI87uIvH+JoT8ES7B1yJxZiGETnbbAHuKqCbkbiqgG5mK6Cb8QqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogAqogG0acAwmVHRLAXschDlQQAVUwKYGXIZTDo7qFnakgAqogP4ooAK+waVh5GpSAROggAqogFKOAiqgAiqg/AUjJ7hc1MT1egAAAABJRU5ErkJggg==) no-repeat left center } .mw-number-text.icon-contributors::before { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAtCAYAAAA5reyyAAAEMElEQVR4AWJ4/uLFYMJsgHbtIVhzLQqg8G7btm3bfLZt2/abtG3btm3btt19tXuNU5UbnV9VPfj2PCtODh7DaOzHDdzEIQxFG6SERItoilcPq6EOpqNsrAdMiWb4CQPQEx+jMsSH13Ad6tJRtIf4UBkfoyf642c0Q8pwBSyOEYiDWpzHP8gIcelZ3IV6dBENIS5lxD84D7WIwwgUD3XActjk8jTLDnFQAiegPm1FFoiD7JgKdbAJ5UIVMA0WQ10aCnEwHBrQ/xAHQ6EuLULqUAT8EurRkxAbtXEWGtBu5IPYeBLq0RemA6bDUqhHwyE2/oIa8qHho3wp0pkM2AS3oR4dRCmIFWZADRkEsUIpHIR6dBtNTAZ8DepDEhpDLIphL9Q9X0dMYyRBfXjNZMD3oT61hFjUwHmoITtQAGLREurT+yYDvgn1IQ4NwhBwP0pALBogDurDmyYDPgL14QjKQCzK43gYjsAyOAL14RGTAcvhKNSjWUgLsciDzVBDliG9zceJWT53fFlzAYGJUI/+g9iYCjVkBMTGv1CPJkJMB/wM6sEdtILY6Aw15A+IjVa4A/Xgs1C9ym2AujQVkoznkQgN6CpaQAwd7euQynxA4EMkuTz6noAkIxu2QQNaAXHwhMujMAkfhvpz1gSogwEQF/pAA/oV4sIAqIPxkFAHLIwVUBuLkQ/iQkNchPp0BHkhLuTDYocjuVDoAwLNobCKx7MQZ0buxn9CPHgO8VBYNYOEI2AxTIPaWI3SEJdq47rPz1jZIC6VxmqHm17RUAYsjm+wB+rgDH5FZYgL/0M9egjiQmX8hjNQB3vwDYqZClgRn2I8TkM9uoxp+BY1IDayYAnUpd8hyaiBbzEdl6EencZ4fIoKXgPWQ0eswTmoIRexCz9DYFUWh6AOeiEFBFYfYYv7aK6cxRp0RL3kAjbBSsRBQ+gwykBg1SrAF+5qOAUNoTisRBNrwHeQAA2D7hAbLQL+qOoBDYMEvA0RRm3cg4bQIYxBO4iNnFgOdfAoJBntMAaHoSF0D7WtbwOmJGIHBuFtFHJxhx8HdeEEnoI4KIS3MQg7kAg1rI8w9kMN2YQ/8RByQRwUxE844GPvj0B9iAu58BD+NPwdcp8wrkEDOoG3kR3iIC0exhAcgQZwHQvwOfJDXMiOt3ECGtA1EwH3oDLERgoUxisYhv24AzUoEWexCD+iJtJBklEF+yId8A7aQywyoCK+xCJcRSI0TO5iL7qjDXIjBcTiIdwNGnAetmKjR8fQHdYL93tYiSRolDiJzqgLseiOYz62fyvmCcOUJ3EAGuV6oUi0rVD9BBpDtqJstARsj3hojFmBdNEQcDw0Rn0V6YAVcBIao2YjXSQDtoDGsDOoFMmAD0FjXLMHAYN5KJIBW+FBwADq4x40hrWLZMCKOIhEXIsxd3EdDSF+3QeCfPkMAgchOAAAAABJRU5ErkJggg==) no-repeat left center } /**/ /* Multimedia viewer */ .mw-mmv-post-image, .mw-mmv-image-metadata { background-color: var(--wiki-content-background-color); border-color: var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-ui-button.mw-ui-progressive:not(:disabled) { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); color: var(--wiki-accent-label-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):hover { background-color: var(--wiki-accent-color--hover); } .skin-vector .mw-ui-button.mw-ui-progressive:hover, .skin-vector .mw-ui-button.mw-ui-primary:disabled { box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75) inset, 0 0 5px var(--wiki-content-border-color); border: 2px solid var(--wiki-content-border-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):active, .mw-ui-button.mw-ui-progressive:not(:disabled).is-on { background-color: var(--wiki-accent-color); border-color: var(--wiki-accent-color); } .mw-ui-button.mw-ui-progressive { box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75) inset, 0 0 5px var(--wiki-content-border-color) } .mw-ui-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-ui-input:hover, .mw-ui-input:focus{ background-color: var(--wiki-content-background-color--secondary); color: var(--wiki-content-text-color); border-color: var(--wiki-content-link-color); box-shadow: none; } .mw-ui-input::placeholder { color:var(--wiki-content-text-mix-color); } .mw-mmv-dialog { background-color: var(--wiki-content-background-color--secondary); box-shadow: 0 2px 2px 0 var(--wiki-content-border-color); } .mw-mmv-dialog .mw-mmv-dialog-down-arrow { background-color: var(--wiki-content-background-color--secondary); } .mw-mmv-options-dialog-header { color: var(--wiki-content-text-color); } .mw-mmv-options-text-header, .mw-mmv-options-text-body { color: var(--wiki-content-text-mix-color); } .mw-ui-button.mw-ui-quiet, .mw-ui-button.mw-ui-quiet.mw-ui-progressive, .mw-ui-button.mw-ui-quiet.mw-ui-destructive { color: var(--wiki-content-link-color); } .mw-ui-button.mw-ui-progressive:not(:disabled):focus { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 1), inset 0 0 0 2px var(--wiki-content-link-color); } input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet, input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet.mw-ui-progressive, input[type="checkbox"]:active+.mw-ui-button.mw-ui-quiet.mw-ui-destructive, .mw-ui-button.mw-ui-quiet:active, .mw-ui-button.mw-ui-quiet.mw-ui-progressive:active, .mw-ui-button.mw-ui-quiet.mw-ui-destructive:active, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet.mw-ui-progressive, input[type="checkbox"]:focus+.mw-ui-button.mw-ui-quiet.mw-ui-destructive, .mw-ui-button.mw-ui-quiet:focus, .mw-ui-button.mw-ui-quiet.mw-ui-progressive:focus, .mw-ui-button.mw-ui-quiet.mw-ui-destructive:focus { color: var(--wiki-content-text-color); } /**/ /* Echo */ .mw-echo-ui-notificationItemWidget { background-color: var(--wiki-content-background-color); } .mw-echo-ui-notificationItemWidget-unread, .mw-echo-ui-placeholderItemWidget { background:rgba(var(--wiki-content-background-color--secondary--rgb), 0.8); } .mw-echo-ui-notificationItemWidget-unread:hover, .mw-echo-ui-notificationItemWidget:hover, .mw-echo-ui-notificationsInboxWidget-toolbarWrapper { background-color:var(--wiki-content-background-color--secondary); } .mw-echo-ui-menuItemWidget > .oo-ui-buttonElement-button > .oo-ui-labelElement-label, .mw-echo-ui-notificationItemWidget-content-message-body { color:var(--wiki-content-text-mix-color); } .mw-echo-ui-notificationsListWidget:not(:hover) a, #p-personal .mw-echo-ui-notificationsListWidget:not(:hover) a.new, .mw-echo-ui-notificationItemWidget-content-message-header, .mw-echo-ui-notificationItemWidget-content-actions-timestamp{ color:var(--wiki-content-text-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-optionWidget-selected > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-link-label-color); } .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover { color: var(--wiki-content-text-color); } .mw-echo-ui-pageNotificationsOptionWidget-label-count { background-color:var(--wiki-content-background-color--secondary); color:var(--wiki-content-text-color); } .mw-echo-ui-notificationItemWidget, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-head, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-footer, .mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup > .oo-ui-popupWidget-footer .mw-echo-ui-notificationBadgeButtonPopupWidget-footer-buttons .oo-ui-buttonElement:last-child { border-color:var(--wiki-content-border-color); } .mw-echo-ui-notificationItemWidget:last-child { border-bottom:1px solid var(--wiki-content-border-color); } .mw-echo-ui-crossWikiNotificationItemWidget-group, .mw-echo-ui-bundleNotificationItemWidget-group { background-color:var(--wiki-content-background-color); } .mw-echo-ui-notificationItemWidget-icon{ filter:brightness(0) var(--wiki-icon-to-link-filter); } .mw-echo-ui-toggleReadCircleButtonWidget-circle { background-color:var(--wiki-content-link-color); } .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected { background-color:rgba(var(--wiki-content-link-color--rgb), 0.1); color:var(--wiki-content-link-color); } .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected.mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-highlighted, .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-pressed.mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-highlighted{ background-color:rgba(var(--wiki-content-link-color--rgb), 0.2); color:var(--wiki-content-link-color); } .oo-ui-optionWidget-selected .mw-echo-ui-pageNotificationsOptionWidget-label-count { color:var(--wiki-content-link-color); } @-webkit-keyframes unseen-fadeout-to-unread { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color--secondary); } } @keyframes unseen-fadeout-to-unread { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color--secondary); } } @-webkit-keyframes unseen-fadeout-to-read { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color); } } @keyframes unseen-fadeout-to-read { from { background-color:rgba(var(--wiki-content-link-color--rgb),0.2); } to { background-color:var(--wiki-content-background-color); } } .oo-ui-popupWidget-anchored-top .oo-ui-popupWidget-anchor:before { border-bottom-color: var(--wiki-content-border-color); } .oo-ui-popupWidget-anchored-top .oo-ui-popupWidget-anchor:after { border-bottom-color: var(--wiki-content-background-color--secondary); } .client-js .mw-echo-special-nojs { filter:var(--wiki-icon-general-filter) } /**/ /************************* * End Vector theme fixes * **************************/ /************************ * Theme-based Scribunto * *************************/ #mw-scribunto-input { background-color: var(--wiki-content-background-color--secondary); border: 1px solid var(--wiki-content-border-color); color: var(--wiki-content-text-color); } .mw-scribunto-console-fieldset, .mw-scribunto-message, .mw-scribunto-input, .mw-scribunto-error, .mw-scribunto-print, .mw-scribunto-normalOutput { background: transparent; } .mw-scribunto-console-fieldset { color: var(--wiki-content-text-color); } .mw-scribunto-message { color: var(--wiki-content-text-color); } .mw-scribunto-input { color: var(--wiki-content-text-color--hover); } .mw-scribunto-error { color: var(--wiki-alert-color); } .mw-scribunto-print { color: var(--wiki-content-text-color); } .mw-scribunto-normalOutput { color: var(--wiki-content-text-color); } /**************** * End Scribunto * *****************/ /*************************** * Theme-based VisualEditor * ****************************/ .ve-init-mw-progressBarWidget { background-color: var(--wiki-body-background-color); border: 1px solid var(--wiki-content-link-color); box-shadow: 0 1px 1px rgba(var(--wiki-content-dynamic-color--rgb),0.15); } .ve-init-mw-progressBarWidget-bar { background-color:var(--wiki-content-link-color); } div.ve-ce-branchNode { background-color:var(--wiki-content-background-color); border-color:var(--wiki-content-border-color); } .ve-ce-focusableNode-highlight { background: var(--wiki-content-link-color); box-shadow: inset 0 0 0 1px var(--wiki-content-link-color); } .ve-ce-surface-highlights-focused .ve-ce-focusableNode-highlights { opacity: 0.25; } .ve-ce-branchNode-blockSlug, .ve-ce-branchNode-newSlug { outline-color: var(--wiki-content-link-color); background-color: rgba(var(--wiki-content-dynamic-color--inverted--rgb),0.75); } .ve-ui-specialCharacterPage-character, .oo-ui-toolbar-position-top .ve-ui-toolbarDialog-position-above, .oo-ui-bookletLayout > .oo-ui-menuLayout-menu, .ve-ui-mwTwoPaneTransclusionDialogLayout > .oo-ui-menuLayout-menu, .ve-ui-specialCharacterPage-character:hover { border-color:var(--wiki-content-border-color); } .ve-ui-specialCharacterPage-character:hover { box-shadow:inset 0 0 1px 1px var(--wiki-content-link-color); } /******************* * End VisualEditor * ********************/ /*********************** * Theme-based msupload * ************************/ #msupload-div, #msupload-list .file { background-color:var(--wiki-content-background-color); border-color:var(--wiki-content-border-color); } #msupload-dropzone { border-color:var(--wiki-content-border-color); color:var(--wiki-content-text-color); } .drop-over { background-color:var(--wiki-accent-color); color:var(--wiki-accent-label-color) !important; } #msupload-bottom #msupload-files { padding-left:0; background: none; } #msupload-bottom #msupload-files::before { display:inline-block; background: url(/extensions/MsUpload/resources/images/msu-upload-icon.png?bdd61) no-repeat 0 0; background-position:left center; height:22px; width:25px; content:''; vertical-align: top; filter:var(--wiki-icon-general-filter); } /*************************** * End theme-based msupload * ****************************/ /***************************** * Theme-based commentstreams * ******************************/ .cs-title-edit-field { border-color:var(--wiki-accent-color); } .cs-edit-box , .cs-expanded .cs-comment-header { background-color: var(--wiki-content-background-color--secondary); border-color:var(--wiki-content-border-color); } .cs-target-comment .cs-comment-header { border-color:var(--wiki-accent-color); } .cs-comment-author a { color: var(--wiki-content-link-color); } .cs-comment-details { color: rgba(var(--wiki-content-text-color--rgb), 0.6); } .cs-comment { border:1px solid var(--wiki-content-border-color); } .cs-comment-body { padding:0 5px; } /********************************* * End theme-based commentstreams * **********************************/ /********************* * Mobile adjustments * **********************/ @media screen and (max-width:720px) { :root { --wiki-content-right-margin: 0px; --wiki-content-padding:0.5rem; --wiki-navigation-right-margin: 1px; --wiki-navigation-left-margin: 0px; --wiki-navigation-top-padding: 5px; --wiki-navigation-bottom-padding:0px; --wiki-navigation-height:2rem; --wiki-navigation-search-height:2.15rem; --wiki-navigation-search-margin:0.5rem; --wiki-logo-height: 80px; --wiki-logo-width: 100%; --wiki-logo-margin: 10px; --wiki-head-height: calc(var(--wiki-logo-height) + (var(--wiki-logo-margin) * 2) + var(--wiki-navigation-height) + var(--wiki-navigation-top-padding) + var(--wiki-navigation-bottom-padding)); --wiki-head-icon-padding: 0.25rem; --wiki-head-icon-size: calc(var(--wiki-navigation-height) - var(--wiki-head-icon-padding) * 2); --wiki-sidebar-background-opacity: var(--wiki-content-background-opacity); --wiki-menu-margin: 0.2rem; --wiki-menu-top-offset: calc(var(--wiki-head-height) + 35px + var(--wiki-navigation-bottom-padding) + var(--wiki-navigation-search-margin)); } #mw-page-base, #mw-head-base { height:var(--wiki-head-height); } #mw-page-base { padding-top:35px; } #mw-head-base { margin-top:calc(var(--wiki-head-height) * -1); } #p-logo, #p-logo a { height: var(--wiki-logo-height); width: var(--wiki-logo-width); } #p-logo { position:absolute; background:none; padding:0; left:0; margin:var(--wiki-logo-margin) 0; transform:none; /* Logo's a part of the sidebar panel, which uses relative positioning for the expandable button. Offset the logo appropriately. */ top: calc(-1 * var(--wiki-menu-top-offset) + 35px); } .mw-wiki-logo { background-size:contain; } #mw-head { left:0; width:100%; top:calc(var(--wiki-head-height) + 35px - var(--wiki-navigation-height)); border:none; border-image:none; } #mw-navigation { position:unset; } #left-navigation, #right-navigation { margin-top: 0; height:var(--wiki-navigation-height); } #right-navigation { margin-right: var(--wiki-navigation-right-margin); } div#left-navigation { margin-left: var(--wiki-navigation-left-margin); } div#right-navigation div#p-search { margin-right: 0; } .vector-menu-tabs-legacy, .vector-menu-dropdown { height:var(--wiki-navigation-height); } .vector-menu-tabs-legacy li a { height:var(--wiki-navigation-height); } #p-cactions { padding-bottom: 0px; } #p-search { position: absolute; left: 50%; transform:translateX(-50%); top: calc(var(--wiki-navigation-height) + var(--wiki-navigation-bottom-padding)); margin-left:0px; z-index: 4 /** above #mw-panel **/; } #simpleSearch { width: calc(100vw - var(--wiki-navigation-right-margin) - var(--wiki-navigation-left-margin)); } .vector-search-box-input { height:var(--wiki-navigation-search-height); } .vector-search-box form { margin:var(--wiki-navigation-search-margin) 0px; } .mw-body { border-left: none; border-right: none; margin-top: 0; padding-top:calc(var(--wiki-content-padding) + var(--wiki-navigation-search-height) + var(--wiki-navigation-bottom-padding) + (var(--wiki-navigation-search-margin) * 2)); } .mw-footer { border-left: none; border-right: none; } #mw-panel { position: unset; width:100%; margin: 0px auto; padding: 0; top: 0; background-position:bottom right, top center; background-size:100% 0.5em, 100% 100%; float:unset; } div#mw-navigation div#mw-panel .portal { box-sizing:border-box; text-align: center } .vector-menu-dropdown .vector-menu-content { right: 0; left: unset; } #mw-panel .vector-menu-portal { border-left-width:0; border-right-width:0; } table.wikitable, table.responsive-table { display: block; overflow-x: scroll; } /* disable float on RecentChanges legend */ .mw-changeslist-legend { float: none; margin: 0 auto; } /* advanced search options */ #mw-searchoptions table { float: none; } #mw-searchoptions table td { display: block; } /* popup when clicking the download button in multimediaviewer */ .mw-mmv-dialog { width: unset; } /* turn math elements into scroll blocks unless they're an immediate child of a span */ :not(span)>.mwe-math-element { display: block; overflow-x: auto; } /* Expandable mobile navigation panel */ body.has-vector-mobile-menu #mw-panel { position: absolute; top: var(--wiki-menu-top-offset); z-index: 3; } body.has-vector-mobile-menu #mw-panel .mobile-nav-toggle { position: relative; z-index: 5; display: block; appearance: none; border: 1px solid var(--wiki-content-border-color); margin-left: var(--wiki-navigation-search-margin); margin-bottom: 2px; background-image: var(--wiki-content-background-color--secondary); } body.has-vector-mobile-menu #mw-panel .vector-menu-portal { display: none; } body.has-vector-mobile-menu #mw-panel .mobile-nav-toggle.nav--expanded ~ .vector-menu-portal { display: block; } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal { text-align: left; font-size: 110%; border-left-width: 1px; border-right-width: 1px; margin-inline: calc(var(--wiki-navigation-left-margin) + var(--wiki-menu-margin)); } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal + .vector-menu-portal { border-top: 0; } body.has-vector-mobile-menu #mw-navigation #mw-panel .vector-menu-portal:not(:last-child) { border-bottom: 0; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list { display: flex; flex-wrap: wrap; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list a { display: block; padding: 0.2rem 0.5rem; border: 1px solid transparent; } body.has-vector-mobile-menu #mw-panel .vector-menu-content-list a:hover { border-color: var(--wiki-content-link-color); } body.has-vector-mobile-menu #mw-panel #p-navigation-label { display: block; } .mobile-nav-toggle { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M1 3v2h18V3zm0 8h18V9H1zm0 6h18v-2H1z'/%3E%3C/svg%3E%0A"); } /* Search adjustments for the expandable menu */ body.has-vector-mobile-menu #p-search { /* reposition to the right when mobile sidebar menu is active */ left: calc(var(--wiki-navigation-search-margin) * 3 + var(--wiki-head-icon-size) + var(--wiki-head-icon-padding)); right: calc(var(--wiki-navigation-right-margin) + var(--wiki-navigation-search-margin)); transform: none; } body.has-vector-mobile-menu #simpleSearch { width: 100%; margin: 0 auto; } /* icon navbar tabs + expandable nav panel icon */ #mw-head { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg fill='none' height='24' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none' stroke='none'/%3E%3Cpath d='M4 4l4 16l4 -14l4 14l4 -16'/%3E%3C/svg%3E"); } #mw-head .vector-menu-tabs .mw-list-item a, #mw-head .vector-menu-dropdown .vector-menu-heading, #mw-panel .mobile-nav-toggle { line-height:var(--wiki-head-icon-size); width: var(--wiki-head-icon-size); /* same as line height */ height: var(--wiki-head-icon-size); box-sizing: content-box; padding: var(--wiki-head-icon-padding); color: transparent; /**<< for watch/unwatch, the text of <a> will be plain 'watch'/'unwatch' without <span> after clicking. **/ } #mw-head .vector-menu-tabs .mw-list-item a::before, #mw-head .vector-menu-dropdown .vector-menu-heading::before, #mw-panel .mobile-nav-toggle::before { content: ""; display: block; position: unset; background-image: none; width: var(--wiki-head-icon-size); height: var(--wiki-head-icon-size); margin: 0; --mask: var(--icon) no-repeat; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-position: center center; mask-position: center center; background-color: var(--wiki-navigation-text-color); } #mw-head .vector-menu-tabs .mw-list-item a:hover::before, #mw-head .vector-menu-dropdown .vector-menu-heading:hover::before, #mw-panel .mobile-nav-toggle:hover::before, #mw-panel .mobile-nav-toggle.nav--expanded::before { background-color: var(--wiki-navigation-selected-text-color); } #mw-head .vector-menu-tabs .mw-list-item a span, #mw-head .vector-menu-dropdown .vector-menu-heading span { display: none; } #mw-head .vector-menu-dropdown .vector-menu-heading::after { display: none; } #ca-edit { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='m16.77 8 1.94-2a1 1 0 0 0 0-1.41l-3.34-3.3a1 1 0 0 0-1.41 0L12 3.23zM1 14.25V19h4.75l9.96-9.96-4.75-4.75z'/%3E%3C/svg%3E%0A"); } #ca-view, #ca-view-foreign { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 14.5a4.5 4.5 0 1 1 4.5-4.5 4.5 4.5 0 0 1-4.5 4.5M10 3C3 3 0 10 0 10s3 7 10 7 10-7 10-7-3-7-10-7'/%3E%3Ccircle cx='10' cy='10' r='2.5'/%3E%3C/svg%3E"); } #left-navigation li[id^=ca-nstab-] { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E article %3C/title%3E%3Cpath d='M5 1a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 3h5v1H5zm0 2h5v1H5zm0 2h5v1H5zm10 7H5v-1h10zm0-2H5v-1h10zm0-2H5v-1h10zm0-2h-4V4h4z'/%3E%3C/svg%3E%0A"); } #ca-history { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M9 6v5h.06l2.48 2.47 1.41-1.41L11 10.11V6z'/%3E%3Cpath d='M10 1a9 9 0 0 0-7.85 13.35L.5 16H6v-5.5l-2.38 2.38A7 7 0 1 1 10 17v2a9 9 0 0 0 0-18'/%3E%3C/svg%3E%0A"); } #ca-talk { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpath d='M26,12H24V6a3,3,0,0,0-3-3H6A3,3,0,0,0,3,6V24.41l5.12-5.12A1.05,1.05,0,0,1,8.83,19H12v3a3,3,0,0,0,3,3h8.17a1.05,1.05,0,0,1,.71.29L29,30.41V15A3,3,0,0,0,26,12ZM12,15v2H8.83a3,3,0,0,0-2.12.88L5,19.59V6A1,1,0,0,1,6,5H21a1,1,0,0,1,1,1v6H15A3,3,0,0,0,12,15ZM27,25.59l-1.71-1.71A3,3,0,0,0,23.17,23H15a1,1,0,0,1-1-1V15a1,1,0,0,1,1-1H26a1,1,0,0,1,1,1Z'/%3E%3C/g%3E%3C/svg%3E"); } #t-contributions { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg enable-background='new 0 0 32 32' id='Stock_cut' version='1.1' viewBox='0 0 32 32' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdesc/%3E%3Cpath d='M27,12V5h-7v0 c0-2.209-1.791-4-4-4h0c-2.209,0-4,1.791-4,4v0H1v7h0c2.209,0,4,1.791,4,4v0c0,2.209-1.791,4-4,4h0v11h11v0c0-2.209,1.791-4,4-4h0 c2.209,0,4,1.791,4,4v0h7V20h0c2.209,0,4-1.791,4-4v0C31,13.791,29.209,12,27,12L27,12z' fill='none' stroke='%23000000' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E"); } #ca-addsection { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpolygon points='29 15 17 15 17 3 15 3 15 15 3 15 3 17 15 17 15 28 17 28 17 17 29 17 29 15'/%3E%3C/g%3E%3C/svg%3E"); } #ca-viewsource { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath class='heroicon-ui' d='M20.59 12l-3.3-3.3a1 1 0 1 1 1.42-1.4l4 4a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.42-1.4l3.3-3.3zM3.4 12l3.3 3.3a1 1 0 0 1-1.42 1.4l-4-4a1 1 0 0 1 0-1.4l4-4a1 1 0 0 1 1.42 1.4L3.4 12zm7.56 8.24a1 1 0 0 1-1.94-.48l4-16a1 1 0 1 1 1.94.48l-4 16z'/%3E%3C/svg%3E"); } #p-variants { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg id='Outlined' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle/%3E%3Cg id='Fill'%3E%3Cpath d='M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,13a24.28,24.28,0,0,0-.41-3.62c2.19.91,3.75,2.19,4.25,3.62Zm-2,0H17V10a20.9,20.9,0,0,1,4.34.63A20.26,20.26,0,0,1,22,15ZM17,8V4.19c1.43.5,2.71,2.06,3.62,4.25A24.28,24.28,0,0,0,17,8ZM15,4.19V8a24.28,24.28,0,0,0-3.62.41C12.29,6.25,13.57,4.69,15,4.19ZM15,10v5H10a20.26,20.26,0,0,1,.63-4.34A20.9,20.9,0,0,1,15,10ZM8,15H4.19c.5-1.43,2.06-2.71,4.25-3.62A24.28,24.28,0,0,0,8,15Zm0,2a24.28,24.28,0,0,0,.41,3.62C6.25,19.71,4.69,18.43,4.19,17Zm2,0h5v5a20.9,20.9,0,0,1-4.34-.63A20.26,20.26,0,0,1,10,17Zm5,7v3.84c-1.43-.5-2.71-2.06-3.62-4.25A24.28,24.28,0,0,0,15,24Zm2,3.84V24a24.28,24.28,0,0,0,3.62-.41C19.71,25.75,18.43,27.31,17,27.81ZM17,22V17h5a20.26,20.26,0,0,1-.63,4.34A20.9,20.9,0,0,1,17,22Zm7-5h3.84c-.5,1.43-2.06,2.71-4.25,3.62A24.28,24.28,0,0,0,24,17Zm2.87-6.12A15.11,15.11,0,0,0,23,9a15.11,15.11,0,0,0-1.85-3.87A12.12,12.12,0,0,1,26.84,10.88Zm-16-5.72A15.11,15.11,0,0,0,9,9a15.11,15.11,0,0,0-3.87,1.85A12.12,12.12,0,0,1,10.88,5.16Zm-5.72,16A15.11,15.11,0,0,0,9,23a15.11,15.11,0,0,0,1.85,3.87A12.12,12.12,0,0,1,5.16,21.12Zm16,5.72A15.11,15.11,0,0,0,23,23a15.11,15.11,0,0,0,3.87-1.85A12.12,12.12,0,0,1,21.12,26.84Z'/%3E%3C/g%3E%3C/svg%3E"); } #p-cactions { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='3' cy='10' r='2'/%3E%3Ccircle cx='17' cy='10' r='2'/%3E%3C/svg%3E%0A"); } #ca-watch { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M20 7h-7L10 .5 7 7H0l5.46 5.47-1.64 7 6.18-3.7 6.18 3.73-1.63-7zm-10 6.9-3.76 2.27 1-4.28L3.5 8.5h4.61L10 4.6l1.9 3.9h4.6l-3.73 3.4 1 4.28z'/%3E%3C/svg%3E%0A"); } #ca-unwatch { --icon: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' id='Outlined'%3E%3Cg style='fill:%23000000;fill-opacity:1' id='Fill'%3E%3Cpath style='fill:%23000000;fill-opacity:1' id='path1380' d='M 28.61,11.67 H 20 L 17.34,3.47 C 16.920093,2.1973942 15.119907,2.1973942 14.7,3.47 L 12,11.67 H 3.39 c -1.3409796,0.0031 -1.900508,1.71581 -0.82,2.51 l 7,5.07 -2.68,8.21 C 6.5980433,28.35747 7.2662365,29.278767 8.21,29.28 8.4953889,29.267666 8.7705436,29.170143 9,29 l 7,-5.07 7,5.07 c 0.236205,0.170386 0.518805,0.264586 0.81,0.27 0.943763,-0.0012 1.611957,-0.92253 1.32,-1.82 l -2.66,-8.21 7,-5.07 c 1.075277,-0.810084 0.486081,-2.522863 -0.86,-2.5 z' /%3E%3C/g%3E%3C/svg%3E"); } .vector-menu-tabs #ca-watch.icon a:hover::before, .vector-menu-tabs #ca-unwatch.icon a:hover::before { background-image:none; } /* RecentChanges - prevent overflow on long summaries */ .client-js .mw-changeslist ul, .client-js .mw-changeslist table.mw-enhanced-rc { margin-left:0; } .mw-changeslist-line-inner-comment, .mw-changeslist-line .comment { font-size:0.9em; word-break:break-all; } .mw-userlink { overflow-wrap:anywhere; } } /* Hide the expandable navigation button for desktop users */ .mobile-nav-toggle { display: none; } /************* * End mobile * **************/ 22260f055329390f1bd1b7ecd5c37d02f242ffa5 Blueberry seeds 0 442 597 506 2024-05-29T01:27:34Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Blueberry growth 0.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} ffdaa52860d2b532ad141145cb90922f339d01e7 607 597 2024-05-29T12:46:17Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Blueberry growth 0.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Quest Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 8f8bbaac9ac4dea9ebd26ba070469c9db326fe04 Template:Purchased at 10 391 598 457 2024-05-29T01:28:10Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Shop_inventory |join= <!-- corresponds to join on --> |fields= shopName, cost, note |where= itemName="{{{1|{{PAGENAME}}}}}" |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Purchased at/phantom |intro= '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}''' can be purchased from the following location(s):<br> {{{!}} class="lkg-table" style="max-width:35%;" !Sold At !Cost !Notes |outro= {{!}}} |delimiter= |default= {{icon|{{ucfirst:{{{1|{{PAGENAME}}}}}}}}} cannot be purchased from any vendor. }}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Cargo query templates]]</noinclude> 076c5bf1cdd5ce3fde7f8c09c6b5d57fe2fbc810 600 598 2024-05-29T01:29:54Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Shop_inventory |join= <!-- corresponds to join on --> |fields= shopName, cost, note |where= itemName="{{{1|{{PAGENAME}}}}}" |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Purchased at/phantom |intro= '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}''' can be purchased from the following location(s):<br> {{{!}} class="lkg-table" style="max-width:35%;" ! style="width:30%;"|Sold At ! style="width:20%;"|Cost !Notes |outro= {{!}}} |delimiter= |default= {{icon|{{ucfirst:{{{1|{{PAGENAME}}}}}}}}} cannot be purchased from any vendor. }}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Cargo query templates]]</noinclude> 1334db626f4f95d4f3cbe546e24f2b4482654369 601 600 2024-05-29T01:30:46Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Shop_inventory |join= <!-- corresponds to join on --> |fields= shopName, cost, note |where= itemName="{{{1|{{PAGENAME}}}}}" |groupBy= <!-- corresponds to group by --> |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Purchased at/phantom |intro= '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}''' can be purchased from the following location(s):<br> {{{!}} class="lkg-table" style="max-width:35%;" !Sold At !Cost !Notes |outro= {{!}}} |delimiter= |default= {{icon|{{ucfirst:{{{1|{{PAGENAME}}}}}}}}} cannot be purchased from any vendor. }}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Cargo query templates]]</noinclude> 076c5bf1cdd5ce3fde7f8c09c6b5d57fe2fbc810 Template:Purchased at/phantom 10 388 599 462 2024-05-29T01:29:11Z Geekette828 51691 wikitext text/x-wiki <includeonly><!-- --> |- | {{icon|{{{shopName|}}}|notext=true|size=75}} | style="text-align:center;" | {{{cost|}}}{{credits}} | style="text-align:center;" | {{{note|&mdash;}}} </includeonly><noinclude>Part of the {{T|Purchased at}} template. This template controls how the results of the Cargo Query is laid out. [[Category:Phantom templates]] </noinclude> 706299994da15984cf9c553bee67f52c925bc833 602 599 2024-05-29T01:31:44Z Geekette828 51691 wikitext text/x-wiki <includeonly><!-- --> |- | {{icon|{{{shopName|}}}|notext=true|size=75}} | style="text-align:center; width:20%;" | {{{cost|}}}{{credits}} | style="text-align:center;" | {{{note|&mdash;}}} </includeonly><noinclude>Part of the {{T|Purchased at}} template. This template controls how the results of the Cargo Query is laid out. [[Category:Phantom templates]] </noinclude> ce0d904fb1a7cb15b157a3af81c9939beb9f6fa1 Module:Gifted item 828 423 603 465 2024-05-29T01:32:44Z Geekette828 51691 Scribunto text/plain local p = {} local lib = require('Module:Feature') local Icon_list = require('Module:Icon list').buildList local characters = mw.loadData('Module:Gifted item/data') local order = { 'love', 'like', 'neutral', 'dislike'} local categories = mw.html.create() local noDupe = {} local blankReturn = { love = 'No character loves this item.', like = 'No character likes this item.', neutral = 'No character is neutral towards this item.', dislike = 'No character dislikes this item.', } local function adj(preference, cap) if preference == 'neutral' then if cap then return 'Neutral' else return 'neutral' end else if cap then return preference:gsub("^%l", string.upper) .. 'd' else return preference .. 'd' end end end function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true }) return p._main(args) end function p._main(args) local data = p.parseCharacters(args) local result = mw.html.create('table'):addClass('lkg-table tdc1 tdbg1 tdwid1 tablemedium') local tr = result:tag('tr') tr:tag('th'):css{ width = '10%' } tr:tag('th'):wikitext('Characters') -- mw.logObject(data) --build table for _, preference in ipairs(order) do local tr = result:tag('tr') --type if preference == 'neutral' then tr:tag('th'):wikitext('Neutral') else tr:tag('th'):wikitext(adj(preference, true)) end --characters local td = tr:tag('td') if next(data[preference]) == nil then td:tag('i'):wikitext(blankReturn[preference]) else local ul = td:tag('ul') local list = {} local settings = { prefix = ' portrait crop ' } for _, character in ipairs(characters) do if data[preference][character] and (noDupe[character] == nil or noDupe[character] == preference) then table.insert(list, character) if noDupe[character] == nil then noDupe[character] = preference end end end -- adding cols = 6 was breaking mobile views -- if #list >= 1 then settings.cols = 6 end td:node(Icon_list(list, settings)) end end --add categories -- result:node(require('Module:Namespace detect').main{main=categories}) --return table with categories return result end function p.parseCharacters(args) local data = { love = {}, like = {}, neutral = {}, dislike = {}, } for _, preference in ipairs(order) do if lib.isNotEmpty(args[preference]) then if args[preference] == 'universal' then for _, character in ipairs(characters) do data[preference][character] = true end else for _, character in ipairs(lib.split(args[preference], ';')) do if noDupe[character] == nil then noDupe[character] = preference end if noDupe[character] == preference then data[preference][character] = true end end end end end --return parsed characters return data end return p 63b94320868adbba051d1a3f367328e0641d6cd1 Blueberries 0 481 608 572 2024-05-29T12:46:27Z Geekette828 51691 wikitext text/x-wiki {{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} Blueberries are grown from {{icon|Blueberry seeds}}, and take '''ten days''' to grow. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Quest Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|crops}} 353355020f2b11643ae2ab6f4c2bca5a2b5d23ac Dark matter fuel 0 385 609 586 2024-05-29T12:46:50Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark matter fuel |machine=Advanced dark matter refiner |ingredients=Dark matter*10 |time=6hr |id=2}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Quest Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 47f971d736526bff9937ed416d3c5040fc846d9c Dark matter 0 491 610 587 2024-05-29T12:47:09Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=1 |sellSuper= |itemType= }} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== ===Quest Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 4b23e8ba64e5af829b97e776d399b4b2c776318b Template:Item infobox 10 209 611 588 2024-05-29T12:48:57Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Energy Gain = {{#if: {{{energyGain|}}} |{{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- If energy gain is false-->}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{#if: {{{healthGain|}}} |{{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain health from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" health gain -->}} |<!-- If health gain is false-->}} |Sell = {{{sellValue|}}}{{credits}}{{#if:{{{sellSuper|}}}|<br>{{icon|super item|notext=true|size=20}}{{{sellSuper|}}}{{credits}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> e0b9525fe7836acefab9a217f4f316fccbe10888 Template:Shop/header 10 394 612 424 2024-05-29T12:51:49Z Geekette828 51691 wikitext text/x-wiki <includeonly>{| class="lkg-table tablemedium !Product !!Sell Price !!Notes</includeonly><noinclude>This template is part of the {{T|Shop}} group of templates, and displays a table header for the shop table. [[Category:Runner templates]]</noinclude> 8bdafeac2334b5b31e1e924f1ab50085fbdd6dc5 613 612 2024-05-29T12:52:47Z Geekette828 51691 wikitext text/x-wiki <includeonly>{| class="lkg-table tablemedium tdc2 !Product !!Sell Price !!Notes</includeonly><noinclude>This template is part of the {{T|Shop}} group of templates, and displays a table header for the shop table. [[Category:Runner templates]]</noinclude> 8f139e007c47f2f88e7443fefd0c81d9033b6707 Template:Shop 10 397 614 445 2024-05-29T12:53:16Z Geekette828 51691 wikitext text/x-wiki <includeonly><tr style="vertical-align:middle;"> <td style="text-align:left;"> {{icon|{{{1|}}}|size=30|link={{{link|{{{1}}}}}}|img={{{img|{{{1}}}}}}|ext={{{ext|png}}}}}</td> <td style="padding:6px 0px;"> {{{2}}}&nbsp;{{icon|credits|size=20|notext=true}}</td> <td style="text-align:left;">{{#if:{{{note|}}}|{{{note|}}}| -- }}</td><!-- -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Shop_inventory |shopName={{#titleparts:{{PAGENAME}}}} |itemName={{{1|}}} |cost={{{2|}}} |note={{{note|}}} }} }}</includeonly><noinclude> {{#cargo_attach:table=Shop_inventory}} {{Documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> 6ee62830e6814e13c5f3891e73cb2cbdaff0c2aa Little-Known Galaxy Wiki:Manual of style 4 494 615 2024-05-29T13:17:23Z Geekette828 51691 Created page with "{{Tocright}} The '''Manual of Style''' is a set of guidelines for editing and creating articles for the {{SITENAME}} Wiki. It provides a basic style guide to ensure all pages are harmonized and eliminate any disputes amongst editors regarding the correct layout. While this is only a guideline and does not have to be followed, it is recommended for editors to familiarize themselves with this manual or their edits may be deemed to have not met the wiki's quality standards...." wikitext text/x-wiki {{Tocright}} The '''Manual of Style''' is a set of guidelines for editing and creating articles for the {{SITENAME}} Wiki. It provides a basic style guide to ensure all pages are harmonized and eliminate any disputes amongst editors regarding the correct layout. While this is only a guideline and does not have to be followed, it is recommended for editors to familiarize themselves with this manual or their edits may be deemed to have not met the wiki's quality standards. Any questions, suggestions, or complaints regarding these rules can be posted in the '''talk page''' or in the '''wiki channel of the official discord'''. ==Language== The preferred language of the {{SITENAME}} Wiki is modern American English. It is important to note that English differs amongst each English-speaking countries, where spelling and grammar usage, such as "color" in American English and "colour" in other versions of English, may mean the same but have different spelling. To remain consistent, editor should use American English language, therefore "color" is the correct form. ===Commonality=== As an international database, using vocabulary common to all varieties of English is preferable. Words and acronyms should be spelled out completely. Contractions must be written formally. :''Incorrect'': <span class="MOSincorrect">don't, won't, it's</span> :''Correct'': <span class="MOScorrect">do not, will not, it is</span> Slang, abbreviations and colloquial words should also be avoided. Use universally accepted terms rather than those less widely distributed, especially in titles. For example, glasses is preferred to the national varieties spectacles (British English) and eyeglasses (American English); ten million is preferable to one crore (Indian English). :''Incorrect'': <span class="MOSincorrect">spectacles</span> (British English) :''Incorrect'': <span class="MOSincorrect">eyeglasses</span> (American English) :''Correct'': <span class="MOScorrect">glasses</span> :''Incorrect'': <span class="MOSincorrect">one crore</span> (Indian English) :''Correct'': <span class="MOScorrect">ten million</span> Lastly, the word "it" should be avioded when editing an article as "it" is vague unless a subject is noted beforehand. The word "it" is not completely banned, however using a more-appropriate, descriptive term is preferred. :''Incorrect'': <span class="MOSincorrect">It is colored red.</span> (What is "it"?) :''Correct'': <span class="MOScorrect">The stop sign is colored red.</span> ===Point of view=== There are three types of point of view: *'''First-person''' - uses pronouns that describe the writer/narrator (''I, me, we,'' etc.) *'''Second-person''' - uses pronouns that describe the reader (''you, your'', etc.) *'''Third-person''' - uses pronouns that describe the subject (''he, she, it, they'', etc.) The point of view of the Sun Haven Wiki is third-person. Third-person writing allows for more flexibility, credibility, and objectivity. First-person and second-person should be avoided as it becomes narrative, directive, or opinionated (biased). As a professional wiki, information should be factual and unbiased (not favoring one or more sides) and should not narrate the writer or reader nor direct the reader to "take action". :''Incorrect'': <span class="MOSincorrect">I use my space ship to travel to different planets.</span> (First person) :''Incorrect'': <span class="MOSincorrect">You use your space ship to travel to different planets.</span> (Second person) :''Correct'': <span class="MOScorrect">The player uses their space ship to travel to different planets.</span> (Third person) Quotes and dialogue are exempt from the third person point-of-view rule, as these must be written as given. ====Biased vs unbiased==== {{SITENAME}} Wiki is an unbiased source, providing factual information by being impartial, or "equal/fair", towards the subject rather than being biased by stating opinions, or "favoring one side", that can be argumentative. When an information becomes biased, it directs the reader to "join that side" instead of allowing them to "make their own judgment". :''Incorrect'': <span class="MOSincorrect">Lin is the best to befriend, because she has the best smile.</span> (biased and argumentative, because it is ''insisting'' the reader to befriend Lin by stating she is "the best"; other readers may disagree) :''Correct'': <span class="MOScorrect">Befriending Lin gives the player free apple tree seeds.</span> (unbiased, because it allows the reader ''to make their own judgment'' if they should befriend Lin; there is nothing to agree or disagree on as it is clearly only stating facts) ===Capitalization=== Capitalization is when all articles are subjected to sentence-case, where capitalization is written in a way it would be written in a sentence. Non-proper nouns need to be lowercased. Proper nouns or the first letter of a sentence need to be capitalized. Avoid unnecessary capitalization. :''Incorrect'': <span class="MOSincorrect">the quarry was Abandoned.</span> :''Correct'': <span class="MOScorrect">The Quarry was abandoned.</span> Places in-game are treated as proper nouns. Names of items are to be capitalized for clarity. :''Incorrect'': <span class="MOSincorrect">sun haven, withergate</span> :''Correct'': <span class="MOScorrect">Sun Haven, Withergate</span> Articles are the words "the", "a", and "an". Articles should not be capitalized, unless it is the first word of a sentence or title. Conjunctions and prepositions should not be capitalized either, unless it is the first word of a sentence or title. ===Dates=== Dates in the {{SITENAME}} Wiki should all follow the same American English format (month-day-year). Dates in quotes and titles are left as-is. Dates should always be fully written out instead of using a numberical format (MM-DD-YYYY) :''Incorrect'': <span class="MOSincorrect">6th May 2021</span> :''Incorrect'': <span class="MOSincorrect">05-06-2021</span> :''Correct'': <span class="MOScorrect">May 6th 2021</span> ==Articles titles and headers== ===Article titles=== Article titles name should follow the same capitalization rules as above. Parenthesis are used to distinguish articles with the same name but different purposes. ===Article headers=== Article headers, such as sections, should never contain links, non-icon images, nor citation. Headers follow the sentence-case rule. Headers may be singular or plural form, whichever makes sense. ==Article bodies== The article body is the main content space of an article, including descriptive information, usage of various tools, and more. The editor should make sure they familiarize themselves with the [[:Category:Page_Layout_Guides|page layout guides]] prior to extensive editing. ===Links=== Links should be added to the first appearance of a word, if applicable. Do not link the same word or name multiple times in the same article. *To add a link, add double brackets on each end. For example: <code><nowiki>[[Blueberries]]</nowiki></code> **To link to a category or file, add a colon before the prefix. For example: <code><nowiki>[[:Category:Crops]]</nowiki></code> will be [[:Category:Crops]]. **To link a category or file without the prefix, add a pipe <code>|</code> at the end. For example: <code><nowiki>[[:Category:Crops|Crops]]</nowiki></code> will be [[:Category:Crops|Crops]]. *Different names for links can be added for clarity if needed by adding a pipe <code>|</code> at the end of the article name and before the different name. For example: <code><nowiki>[[Blueberries|different name]]</nowiki></code> will appear as "[[Blueberries|different name]]". *Be clear when adding links. Do not use a different name that puts the subject out of context. :::''Incorrect'': <span class="MOSincorrect">[[Blueberries|This]] and [[Corn|this]] can be obtained from harvesting crops.</span> :::''Correct'': <span class="MOScorrect">[[Blueberries]] and [[Dragonfruit]] can be obtained from harvesting crops.</span> *Blend linking are endings added immediately after a link (without a space after the link). These endings will be included in the link. For example: <code><nowiki>[[Potato]]es</nowiki></code> will appear as [[Potato]]es. **Avoid linking unnecessary words or punctuation. ::::''Incorrect'': <span class="MOSincorrect"><code><nowiki>[[Lin]]is OR [[Lin|Lin.]]</nowiki></code> will appear as [[Lin]]is OR [[Lin|Lin.]]</span> ::::''Correct'': <span class="MOScorrect"><code><nowiki>[[Lin]] is OR [[Lin]].</nowiki></code></span> *Captions in images should contain links if possible. ====Section linking==== Section linking can be used to direct the reader to the appropriate part of the page, rather than the beginning of the page. Section linking can be used on the same page or on a different page. Section linking is accomplished by placing a number sign <code>#</code> in the beginning of the link, after the opening brackets <nowiki>[[</nowiki>, or after the link name. However, to omit the <code>#</code> sign, you must use a different name. If used on the same page, the <code>#</code> is added at the beginning of the section name. :For example, on this page, rather than <code>[[Little-Known_Galaxy_Wiki:Manual of Style#Section linking]]</code>, you can do <code>[[#Section linking]]</code> instead. Both accomplish the same task, but the latter is shorter and quicker. If section linking to a different page, you must first include the page name followed by the <code>#</code> sign and lastly the section name. ===Files=== Files are images, videos, or audio that help readers visualize the subject better. They should be high quality and pertain to the article. Avoid redundancy, irrelevancy, clutter, or otherwise unnecessary or obtrusive. Articles do not need to have multiple images of the subject. Galleries should be used to place all relevant images together without cluttering the article body, especially on individual item pages. Additionally, follow these principles pertaining to files: *Groups of files should be placed in the "gallery" section of the page. *Images should be the right size - size should not exceed half the page's width or be too small to see. *Captions should be clear and to-the-point. *File names should be clear, appropriate, and named properly. If you can't find an image through the search, then the file name is not appropriate. Name the file in a way it is relevant, clear, and can be easily searched in the wiki. ===Templates=== Templates should be added when necessary and avoided where it would detract from the actual content. All infoboxes need to use the infobox tags. *The prefix <code>Template:</code> inside curly brackets <code><nowiki>{{ }}</nowiki></code> are not necessary. ====Naming Convention==== To standardize naming conventions, please use the following rules when creating new templates. * Templates should begin with a capitalized letter in the first word. All other words should be lowercase. * Templates should have spaces between all words. ===Trivia=== Trivia are miscellaneous facts that are relevant to the article but do not meet the standards of being placed in the main body of the article. *Opinions are not allowed to be added. Opinions include but not limited to: "I think", "most players think", etc. *Do not be redundant. If the fact is already in the article, do not add it again. *All pertaining facts should be grouped together. *Do not add speculation. ==Category pages== Category pages are the navigator pages of a wiki. They list all articles containing the category, allowing readers to read other related articles. Categories allow readers to navigate to different, related articles on the wiki. Add only related, relevant categories. Do not add redundant categories. Categories must be added at the end of the page, if typing in the page editor. To add a category, use the prefix <code>Category:</code> and an existing category page name. For example: <code><nowiki>[[Category:Characters]]</nowiki></code>. To link to a category, add a colon before the <code>Category:</code> prefix, see [[#Section linking]]. ===Naming Conventions=== To standardize naming conventions, please use the following rules when creating new categories. * Categories must begin with a capitalized letter in the first word. All other words should be lowercase. * Categories must have spaces between all words. * Categories must be plural. ==Redirects== Redirects are pages that direct readers to another page if the initial page no longer exists or is applicable. Rather than being deleted, redirects help divert the reader to the correct page. For example, if the article was formerly named "Town" and was changed as a redirect to "Starlet Town", old links that had linked to "Town" will redirect all readers to "Starlet Town". You can also redirect to a section of a page, see [[#Section linking]]. To create a redirect, add <code><nowiki>#REDIRECT [[name of new page]]</nowiki></code>. :For example, <code><nowiki>#REDIRECT [[Blueberries]]</nowiki></code> ==Lists== ===Indentation=== To indent a line, add a colon <code>:</code> at the ''beginning'' of the line. For further indentation, add more colons. <pre> :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. </pre> Would result in... :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. ===Definition list=== Definition lists begin with a bolded statement, followed by an indented statement or definition. Rather than using single quote marks to bold a line, use a semi-colon <code>;</code> at the beginning instead. <pre> ;Statement :Definition :;Sub statement ::Sub definition </pre> Would result in... ;Statement :Definition :;Sub statement ::Sub definition ===Numbered list=== To add a numbered list, use a hashtag (#) at the beginning of a line. Do not separate each line with a space as it will break the numbering system. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> #Line 1 #Line 2 #Line 3 </pre> | <pre> #Line 1 #Line 2 #Line 3 </pre> |} ===Bullet points=== To create bullet points, use an asterisk (*) at the beginning of the line. Do not separate each line with a space. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> *Line 1 **Indented line 1 *Line 2 **Indented line 2 ***Further indented line 2 of indented line 2 *Line 3 </pre> | <pre> *Line 1 *Line 2 *Line 3 </pre> |} [[Category:Wiki help]] b80e33dad89013fa4a0ae8c2665bcf84924b5377 616 615 2024-05-29T13:18:31Z Geekette828 51691 wikitext text/x-wiki {{Tocright}} The '''Manual of Style''' is a set of guidelines for editing and creating articles for the {{SITENAME}} Wiki. It provides a basic style guide to ensure all pages are harmonized and eliminate any disputes amongst editors regarding the correct layout. While this is only a guideline and does not have to be followed, it is recommended for editors to familiarize themselves with this manual or their edits may be deemed to have not met the wiki's quality standards. Any questions, suggestions, or complaints regarding these rules can be posted in the '''talk page''' or in the '''wiki channel of the official discord'''. ==Language== The preferred language of the {{SITENAME}} Wiki is modern American English. It is important to note that English differs amongst each English-speaking countries, where spelling and grammar usage, such as "color" in American English and "colour" in other versions of English, may mean the same but have different spelling. To remain consistent, editor should use American English language, therefore "color" is the correct form. ===Commonality=== As an international database, using vocabulary common to all varieties of English is preferable. Words and acronyms should be spelled out completely. Contractions must be written formally. :''Incorrect'': <span class="MOSincorrect">don't, won't, it's</span> :''Correct'': <span class="MOScorrect">do not, will not, it is</span> Slang, abbreviations and colloquial words should also be avoided. Use universally accepted terms rather than those less widely distributed, especially in titles. For example, glasses is preferred to the national varieties spectacles (British English) and eyeglasses (American English); ten million is preferable to one crore (Indian English). :''Incorrect'': <span class="MOSincorrect">spectacles</span> (British English) :''Incorrect'': <span class="MOSincorrect">eyeglasses</span> (American English) :''Correct'': <span class="MOScorrect">glasses</span> :''Incorrect'': <span class="MOSincorrect">one crore</span> (Indian English) :''Correct'': <span class="MOScorrect">ten million</span> Lastly, the word "it" should be avioded when editing an article as "it" is vague unless a subject is noted beforehand. The word "it" is not completely banned, however using a more-appropriate, descriptive term is preferred. :''Incorrect'': <span class="MOSincorrect">It is colored red.</span> (What is "it"?) :''Correct'': <span class="MOScorrect">The stop sign is colored red.</span> ===Point of view=== There are three types of point of view: *'''First-person''' - uses pronouns that describe the writer/narrator (''I, me, we,'' etc.) *'''Second-person''' - uses pronouns that describe the reader (''you, your'', etc.) *'''Third-person''' - uses pronouns that describe the subject (''he, she, it, they'', etc.) The point of view of the {{SITENAME}} Wiki is third-person. Third-person writing allows for more flexibility, credibility, and objectivity. First-person and second-person should be avoided as it becomes narrative, directive, or opinionated (biased). As a professional wiki, information should be factual and unbiased (not favoring one or more sides) and should not narrate the writer or reader nor direct the reader to "take action". :''Incorrect'': <span class="MOSincorrect">I use my space ship to travel to different planets.</span> (First person) :''Incorrect'': <span class="MOSincorrect">You use your space ship to travel to different planets.</span> (Second person) :''Correct'': <span class="MOScorrect">The player uses their space ship to travel to different planets.</span> (Third person) Quotes and dialogue are exempt from the third person point-of-view rule, as these must be written as given. ====Biased vs unbiased==== {{SITENAME}} Wiki is an unbiased source, providing factual information by being impartial, or "equal/fair", towards the subject rather than being biased by stating opinions, or "favoring one side", that can be argumentative. When an information becomes biased, it directs the reader to "join that side" instead of allowing them to "make their own judgment". :''Incorrect'': <span class="MOSincorrect">Lin is the best to befriend, because she has the best smile.</span> (biased and argumentative, because it is ''insisting'' the reader to befriend Lin by stating she is "the best"; other readers may disagree) :''Correct'': <span class="MOScorrect">Befriending Lin gives the player free apple tree seeds.</span> (unbiased, because it allows the reader ''to make their own judgment'' if they should befriend Lin; there is nothing to agree or disagree on as it is clearly only stating facts) ===Capitalization=== Capitalization is when all articles are subjected to sentence-case, where capitalization is written in a way it would be written in a sentence. Non-proper nouns need to be lowercased. Proper nouns or the first letter of a sentence need to be capitalized. Avoid unnecessary capitalization. :''Incorrect'': <span class="MOSincorrect">the quarry was Abandoned.</span> :''Correct'': <span class="MOScorrect">The Quarry was abandoned.</span> Places in-game are treated as proper nouns. Names of items are to be capitalized for clarity. :''Incorrect'': <span class="MOSincorrect">blue reef, iceladus</span> :''Correct'': <span class="MOScorrect">Blue Reed, Iceladus</span> Articles are the words "the", "a", and "an". Articles should not be capitalized, unless it is the first word of a sentence or title. Conjunctions and prepositions should not be capitalized either, unless it is the first word of a sentence or title. ===Dates=== Dates in the {{SITENAME}} Wiki should all follow the same American English format (month-day-year). Dates in quotes and titles are left as-is. Dates should always be fully written out instead of using a numberical format (MM-DD-YYYY) :''Incorrect'': <span class="MOSincorrect">6th May 2021</span> :''Incorrect'': <span class="MOSincorrect">05-06-2021</span> :''Correct'': <span class="MOScorrect">May 6th 2021</span> ==Articles titles and headers== ===Article titles=== Article titles name should follow the same capitalization rules as above. Parenthesis are used to distinguish articles with the same name but different purposes. ===Article headers=== Article headers, such as sections, should never contain links, non-icon images, nor citation. Headers follow the sentence-case rule. Headers may be singular or plural form, whichever makes sense. ==Article bodies== The article body is the main content space of an article, including descriptive information, usage of various tools, and more. The editor should make sure they familiarize themselves with the [[:Category:Page_Layout_Guides|page layout guides]] prior to extensive editing. ===Links=== Links should be added to the first appearance of a word, if applicable. Do not link the same word or name multiple times in the same article. *To add a link, add double brackets on each end. For example: <code><nowiki>[[Blueberries]]</nowiki></code> **To link to a category or file, add a colon before the prefix. For example: <code><nowiki>[[:Category:Crops]]</nowiki></code> will be [[:Category:Crops]]. **To link a category or file without the prefix, add a pipe <code>|</code> at the end. For example: <code><nowiki>[[:Category:Crops|Crops]]</nowiki></code> will be [[:Category:Crops|Crops]]. *Different names for links can be added for clarity if needed by adding a pipe <code>|</code> at the end of the article name and before the different name. For example: <code><nowiki>[[Blueberries|different name]]</nowiki></code> will appear as "[[Blueberries|different name]]". *Be clear when adding links. Do not use a different name that puts the subject out of context. :::''Incorrect'': <span class="MOSincorrect">[[Blueberries|This]] and [[Corn|this]] can be obtained from harvesting crops.</span> :::''Correct'': <span class="MOScorrect">[[Blueberries]] and [[Corn]] can be obtained from harvesting crops.</span> *Blend linking are endings added immediately after a link (without a space after the link). These endings will be included in the link. For example: <code><nowiki>[[Potato]]es</nowiki></code> will appear as [[Potato]]es. **Avoid linking unnecessary words or punctuation. ::::''Incorrect'': <span class="MOSincorrect"><code><nowiki>[[Lin]]is OR [[Lin|Lin.]]</nowiki></code> will appear as [[Lin]]is OR [[Lin|Lin.]]</span> ::::''Correct'': <span class="MOScorrect"><code><nowiki>[[Lin]] is OR [[Lin]].</nowiki></code></span> *Captions in images should contain links if possible. ====Section linking==== Section linking can be used to direct the reader to the appropriate part of the page, rather than the beginning of the page. Section linking can be used on the same page or on a different page. Section linking is accomplished by placing a number sign <code>#</code> in the beginning of the link, after the opening brackets <nowiki>[[</nowiki>, or after the link name. However, to omit the <code>#</code> sign, you must use a different name. If used on the same page, the <code>#</code> is added at the beginning of the section name. :For example, on this page, rather than <code>[[Little-Known_Galaxy_Wiki:Manual of Style#Section linking]]</code>, you can do <code>[[#Section linking]]</code> instead. Both accomplish the same task, but the latter is shorter and quicker. If section linking to a different page, you must first include the page name followed by the <code>#</code> sign and lastly the section name. ===Files=== Files are images, videos, or audio that help readers visualize the subject better. They should be high quality and pertain to the article. Avoid redundancy, irrelevancy, clutter, or otherwise unnecessary or obtrusive. Articles do not need to have multiple images of the subject. Galleries should be used to place all relevant images together without cluttering the article body, especially on individual item pages. Additionally, follow these principles pertaining to files: *Groups of files should be placed in the "gallery" section of the page. *Images should be the right size - size should not exceed half the page's width or be too small to see. *Captions should be clear and to-the-point. *File names should be clear, appropriate, and named properly. If you can't find an image through the search, then the file name is not appropriate. Name the file in a way it is relevant, clear, and can be easily searched in the wiki. ===Templates=== Templates should be added when necessary and avoided where it would detract from the actual content. All infoboxes need to use the infobox tags. *The prefix <code>Template:</code> inside curly brackets <code><nowiki>{{ }}</nowiki></code> are not necessary. ====Naming Convention==== To standardize naming conventions, please use the following rules when creating new templates. * Templates should begin with a capitalized letter in the first word. All other words should be lowercase. * Templates should have spaces between all words. ===Trivia=== Trivia are miscellaneous facts that are relevant to the article but do not meet the standards of being placed in the main body of the article. *Opinions are not allowed to be added. Opinions include but not limited to: "I think", "most players think", etc. *Do not be redundant. If the fact is already in the article, do not add it again. *All pertaining facts should be grouped together. *Do not add speculation. ==Category pages== Category pages are the navigator pages of a wiki. They list all articles containing the category, allowing readers to read other related articles. Categories allow readers to navigate to different, related articles on the wiki. Add only related, relevant categories. Do not add redundant categories. Categories must be added at the end of the page, if typing in the page editor. To add a category, use the prefix <code>Category:</code> and an existing category page name. For example: <code><nowiki>[[Category:Characters]]</nowiki></code>. To link to a category, add a colon before the <code>Category:</code> prefix, see [[#Section linking]]. ===Naming Conventions=== To standardize naming conventions, please use the following rules when creating new categories. * Categories must begin with a capitalized letter in the first word. All other words should be lowercase. * Categories must have spaces between all words. * Categories must be plural. ==Redirects== Redirects are pages that direct readers to another page if the initial page no longer exists or is applicable. Rather than being deleted, redirects help divert the reader to the correct page. For example, if the article was formerly named "Town" and was changed as a redirect to "Starlet Town", old links that had linked to "Town" will redirect all readers to "Starlet Town". You can also redirect to a section of a page, see [[#Section linking]]. To create a redirect, add <code><nowiki>#REDIRECT [[name of new page]]</nowiki></code>. :For example, <code><nowiki>#REDIRECT [[Blueberries]]</nowiki></code> ==Lists== ===Indentation=== To indent a line, add a colon <code>:</code> at the ''beginning'' of the line. For further indentation, add more colons. <pre> :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. </pre> Would result in... :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. ===Definition list=== Definition lists begin with a bolded statement, followed by an indented statement or definition. Rather than using single quote marks to bold a line, use a semi-colon <code>;</code> at the beginning instead. <pre> ;Statement :Definition :;Sub statement ::Sub definition </pre> Would result in... ;Statement :Definition :;Sub statement ::Sub definition ===Numbered list=== To add a numbered list, use a hashtag (#) at the beginning of a line. Do not separate each line with a space as it will break the numbering system. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> #Line 1 #Line 2 #Line 3 </pre> | <pre> #Line 1 #Line 2 #Line 3 </pre> |} ===Bullet points=== To create bullet points, use an asterisk (*) at the beginning of the line. Do not separate each line with a space. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> *Line 1 **Indented line 1 *Line 2 **Indented line 2 ***Further indented line 2 of indented line 2 *Line 3 </pre> | <pre> *Line 1 *Line 2 *Line 3 </pre> |} [[Category:Wiki help]] c2b729a7aa3a79dbacbddab8d77c44bafc875abe 618 616 2024-05-29T13:21:00Z Geekette828 51691 wikitext text/x-wiki {{Tocright}} The '''Manual of Style''' is a set of guidelines for editing and creating articles for the {{SITENAME}} Wiki. It provides a basic style guide to ensure all pages are harmonized and eliminate any disputes amongst editors regarding the correct layout. While this is only a guideline and does not have to be followed, it is recommended for editors to familiarize themselves with this manual or their edits may be deemed to have not met the wiki's quality standards. Any questions, suggestions, or complaints regarding these rules can be posted in the '''talk page''' or in the '''wiki channel of the official discord'''. ==Language== The preferred language of the {{SITENAME}} Wiki is modern American English. It is important to note that English differs amongst each English-speaking countries, where spelling and grammar usage, such as "color" in American English and "colour" in other versions of English, may mean the same but have different spelling. To remain consistent, editor should use American English language, therefore "color" is the correct form. ===Commonality=== As an international database, using vocabulary common to all varieties of English is preferable. Words and acronyms should be spelled out completely. Contractions must be written formally. :''Incorrect'': <span class="MOSincorrect">don't, won't, it's</span> :''Correct'': <span class="MOScorrect">do not, will not, it is</span> Slang, abbreviations and colloquial words should also be avoided. Use universally accepted terms rather than those less widely distributed, especially in titles. For example, glasses is preferred to the national varieties spectacles (British English) and eyeglasses (American English); ten million is preferable to one crore (Indian English). :''Incorrect'': <span class="MOSincorrect">spectacles</span> (British English) :''Incorrect'': <span class="MOSincorrect">eyeglasses</span> (American English) :''Correct'': <span class="MOScorrect">glasses</span> :''Incorrect'': <span class="MOSincorrect">one crore</span> (Indian English) :''Correct'': <span class="MOScorrect">ten million</span> Lastly, the word "it" should be avioded when editing an article as "it" is vague unless a subject is noted beforehand. The word "it" is not completely banned, however using a more-appropriate, descriptive term is preferred. :''Incorrect'': <span class="MOSincorrect">It is colored red.</span> (What is "it"?) :''Correct'': <span class="MOScorrect">The stop sign is colored red.</span> ===Point of view=== There are three types of point of view: *'''First-person''' - uses pronouns that describe the writer/narrator (''I, me, we,'' etc.) *'''Second-person''' - uses pronouns that describe the reader (''you, your'', etc.) *'''Third-person''' - uses pronouns that describe the subject (''he, she, it, they'', etc.) The point of view of the {{SITENAME}} Wiki is third-person. Third-person writing allows for more flexibility, credibility, and objectivity. First-person and second-person should be avoided as it becomes narrative, directive, or opinionated (biased). As a professional wiki, information should be factual and unbiased (not favoring one or more sides) and should not narrate the writer or reader nor direct the reader to "take action". :''Incorrect'': <span class="MOSincorrect">I use my space ship to travel to different planets.</span> (First person) :''Incorrect'': <span class="MOSincorrect">You use your space ship to travel to different planets.</span> (Second person) :''Correct'': <span class="MOScorrect">The player uses their space ship to travel to different planets.</span> (Third person) Quotes and dialogue are exempt from the third person point-of-view rule, as these must be written as given. ====Biased vs unbiased==== {{SITENAME}} Wiki is an unbiased source, providing factual information by being impartial, or "equal/fair", towards the subject rather than being biased by stating opinions, or "favoring one side", that can be argumentative. When an information becomes biased, it directs the reader to "join that side" instead of allowing them to "make their own judgment". :''Incorrect'': <span class="MOSincorrect">Lin is the best to befriend, because she has the best smile.</span> (biased and argumentative, because it is ''insisting'' the reader to befriend Lin by stating she is "the best"; other readers may disagree) :''Correct'': <span class="MOScorrect">Befriending Lin gives the player free apple tree seeds.</span> (unbiased, because it allows the reader ''to make their own judgment'' if they should befriend Lin; there is nothing to agree or disagree on as it is clearly only stating facts) ===Capitalization=== Capitalization is when all articles are subjected to sentence-case, where capitalization is written in a way it would be written in a sentence. Non-proper nouns need to be lowercased. Proper nouns or the first letter of a sentence need to be capitalized. Avoid unnecessary capitalization. :''Incorrect'': <span class="MOSincorrect">the quarry was Abandoned.</span> :''Correct'': <span class="MOScorrect">The Quarry was abandoned.</span> Places in-game are treated as proper nouns. Names of items are to be capitalized for clarity. :''Incorrect'': <span class="MOSincorrect">blue reef, iceladus</span> :''Correct'': <span class="MOScorrect">Blue Reed, Iceladus</span> Articles are the words "the", "a", and "an". Articles should not be capitalized, unless it is the first word of a sentence or title. Conjunctions and prepositions should not be capitalized either, unless it is the first word of a sentence or title. ===Dates=== Dates in the {{SITENAME}} Wiki should all follow the same American English format (month-day-year). Dates in quotes and titles are left as-is. Dates should always be fully written out instead of using a numberical format (MM-DD-YYYY) :''Incorrect'': <span class="MOSincorrect">6th May 2021</span> :''Incorrect'': <span class="MOSincorrect">05-06-2021</span> :''Correct'': <span class="MOScorrect">May 6th 2021</span> ==Articles titles and headers== ===Article titles=== Article titles name should follow the same capitalization rules as above. Parenthesis are used to distinguish articles with the same name but different purposes. ===Article headers=== Article headers, such as sections, should never contain links, non-icon images, nor citation. Headers follow the sentence-case rule. Headers may be singular or plural form, whichever makes sense. ==Article bodies== The article body is the main content space of an article, including descriptive information, usage of various tools, and more. The editor should make sure they familiarize themselves with the [[:Category:Page_Layout_Guides|page layout guides]] prior to extensive editing. ===Links=== Links should be added to the first appearance of a word, if applicable. Do not link the same word or name multiple times in the same article. *To add a link, add double brackets on each end. For example: <code><nowiki>[[Blueberries]]</nowiki></code> **To link to a category or file, add a colon before the prefix. For example: <code><nowiki>[[:Category:Crops]]</nowiki></code> will be [[:Category:Crops]]. **To link a category or file without the prefix, add a pipe <code>|</code> at the end. For example: <code><nowiki>[[:Category:Crops|Crops]]</nowiki></code> will be [[:Category:Crops|Crops]]. *Different names for links can be added for clarity if needed by adding a pipe <code>|</code> at the end of the article name and before the different name. For example: <code><nowiki>[[Blueberries|different name]]</nowiki></code> will appear as "[[Blueberries|different name]]". *Be clear when adding links. Do not use a different name that puts the subject out of context. :::''Incorrect'': <span class="MOSincorrect">[[Blueberries|This]] and [[Corn|this]] can be obtained from harvesting crops.</span> :::''Correct'': <span class="MOScorrect">[[Blueberries]] and [[Corn]] can be obtained from harvesting crops.</span> *Blend linking are endings added immediately after a link (without a space after the link). These endings will be included in the link. For example: <code><nowiki>[[Potato]]es</nowiki></code> will appear as [[Potato]]es. **Avoid linking unnecessary words or punctuation. ::::''Incorrect'': <span class="MOSincorrect"><code><nowiki>[[Lin]]is OR [[Lin|Lin.]]</nowiki></code> will appear as [[Lin]]is OR [[Lin|Lin.]]</span> ::::''Correct'': <span class="MOScorrect"><code><nowiki>[[Lin]] is OR [[Lin]].</nowiki></code></span> *Captions in images should contain links if possible. ====Section linking==== Section linking can be used to direct the reader to the appropriate part of the page, rather than the beginning of the page. Section linking can be used on the same page or on a different page. Section linking is accomplished by placing a number sign <code>#</code> in the beginning of the link, after the opening brackets <nowiki>[[</nowiki>, or after the link name. However, to omit the <code>#</code> sign, you must use a different name. If used on the same page, the <code>#</code> is added at the beginning of the section name. :For example, on this page, rather than <code>[[Little-Known_Galaxy_Wiki:Manual of style#Section linking]]</code>, you can do <code>[[#Section linking]]</code> instead. Both accomplish the same task, but the latter is shorter and quicker. If section linking to a different page, you must first include the page name followed by the <code>#</code> sign and lastly the section name. ===Files=== Files are images, videos, or audio that help readers visualize the subject better. They should be high quality and pertain to the article. Avoid redundancy, irrelevancy, clutter, or otherwise unnecessary or obtrusive. Articles do not need to have multiple images of the subject. Galleries should be used to place all relevant images together without cluttering the article body, especially on individual item pages. Additionally, follow these principles pertaining to files: *Groups of files should be placed in the "gallery" section of the page. *Images should be the right size - size should not exceed half the page's width or be too small to see. *Captions should be clear and to-the-point. *File names should be clear, appropriate, and named properly. If you can't find an image through the search, then the file name is not appropriate. Name the file in a way it is relevant, clear, and can be easily searched in the wiki. ===Templates=== Templates should be added when necessary and avoided where it would detract from the actual content. All infoboxes need to use the infobox tags. *The prefix <code>Template:</code> inside curly brackets <code><nowiki>{{ }}</nowiki></code> are not necessary. ====Naming Convention==== To standardize naming conventions, please use the following rules when creating new templates. * Templates should begin with a capitalized letter in the first word. All other words should be lowercase. * Templates should have spaces between all words. ===Trivia=== Trivia are miscellaneous facts that are relevant to the article but do not meet the standards of being placed in the main body of the article. *Opinions are not allowed to be added. Opinions include but not limited to: "I think", "most players think", etc. *Do not be redundant. If the fact is already in the article, do not add it again. *All pertaining facts should be grouped together. *Do not add speculation. ==Category pages== Category pages are the navigator pages of a wiki. They list all articles containing the category, allowing readers to read other related articles. Categories allow readers to navigate to different, related articles on the wiki. Add only related, relevant categories. Do not add redundant categories. Categories must be added at the end of the page, if typing in the page editor. To add a category, use the prefix <code>Category:</code> and an existing category page name. For example: <code><nowiki>[[Category:Characters]]</nowiki></code>. To link to a category, add a colon before the <code>Category:</code> prefix, see [[#Section linking]]. ===Naming Conventions=== To standardize naming conventions, please use the following rules when creating new categories. * Categories must begin with a capitalized letter in the first word. All other words should be lowercase. * Categories must have spaces between all words. * Categories must be plural. ==Redirects== Redirects are pages that direct readers to another page if the initial page no longer exists or is applicable. Rather than being deleted, redirects help divert the reader to the correct page. For example, if the article was formerly named "Town" and was changed as a redirect to "Starlet Town", old links that had linked to "Town" will redirect all readers to "Starlet Town". You can also redirect to a section of a page, see [[#Section linking]]. To create a redirect, add <code><nowiki>#REDIRECT [[name of new page]]</nowiki></code>. :For example, <code><nowiki>#REDIRECT [[Blueberries]]</nowiki></code> ==Lists== ===Indentation=== To indent a line, add a colon <code>:</code> at the ''beginning'' of the line. For further indentation, add more colons. <pre> :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. </pre> Would result in... :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. ===Definition list=== Definition lists begin with a bolded statement, followed by an indented statement or definition. Rather than using single quote marks to bold a line, use a semi-colon <code>;</code> at the beginning instead. <pre> ;Statement :Definition :;Sub statement ::Sub definition </pre> Would result in... ;Statement :Definition :;Sub statement ::Sub definition ===Numbered list=== To add a numbered list, use a hashtag (#) at the beginning of a line. Do not separate each line with a space as it will break the numbering system. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> #Line 1 #Line 2 #Line 3 </pre> | <pre> #Line 1 #Line 2 #Line 3 </pre> |} ===Bullet points=== To create bullet points, use an asterisk (*) at the beginning of the line. Do not separate each line with a space. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> *Line 1 **Indented line 1 *Line 2 **Indented line 2 ***Further indented line 2 of indented line 2 *Line 3 </pre> | <pre> *Line 1 *Line 2 *Line 3 </pre> |} [[Category:Wiki help]] 37afa01ecac2d41bbe7fa9bef83846976e1fae98 627 618 2024-05-29T16:27:36Z Geekette828 51691 wikitext text/x-wiki {{Tocright}} The '''Manual of Style''' is a set of guidelines for editing and creating articles for the {{SITENAME}}. It provides a basic style guide to ensure all pages are harmonized and eliminate any disputes amongst editors regarding the correct layout. While this is only a guideline and does not have to be followed, it is recommended for editors to familiarize themselves with this manual or their edits may be deemed to have not met the wiki's quality standards. Any questions, suggestions, or complaints regarding these rules can be posted in the '''talk page''' or in the '''wiki channel of the official discord'''. ==Language== The preferred language of the {{SITENAME}} is modern American English. It is important to note that English differs amongst each English-speaking countries, where spelling and grammar usage, such as "color" in American English and "colour" in other versions of English, may mean the same but have different spelling. To remain consistent, editor should use American English language, therefore "color" is the correct form. ===Commonality=== As an international database, using vocabulary common to all varieties of English is preferable. Words and acronyms should be spelled out completely. Contractions must be written formally. :''Incorrect'': <span class="MOSincorrect">don't, won't, it's</span> :''Correct'': <span class="MOScorrect">do not, will not, it is</span> Slang, abbreviations and colloquial words should also be avoided. Use universally accepted terms rather than those less widely distributed, especially in titles. For example, glasses is preferred to the national varieties spectacles (British English) and eyeglasses (American English); ten million is preferable to one crore (Indian English). :''Incorrect'': <span class="MOSincorrect">spectacles</span> (British English) :''Incorrect'': <span class="MOSincorrect">eyeglasses</span> (American English) :''Correct'': <span class="MOScorrect">glasses</span> :''Incorrect'': <span class="MOSincorrect">one crore</span> (Indian English) :''Correct'': <span class="MOScorrect">ten million</span> Lastly, the word "it" should be avioded when editing an article as "it" is vague unless a subject is noted beforehand. The word "it" is not completely banned, however using a more-appropriate, descriptive term is preferred. :''Incorrect'': <span class="MOSincorrect">It is colored red.</span> (What is "it"?) :''Correct'': <span class="MOScorrect">The stop sign is colored red.</span> ===Point of view=== There are three types of point of view: *'''First-person''' - uses pronouns that describe the writer/narrator (''I, me, we,'' etc.) *'''Second-person''' - uses pronouns that describe the reader (''you, your'', etc.) *'''Third-person''' - uses pronouns that describe the subject (''he, she, it, they'', etc.) The point of view of the {{SITENAME}} is third-person. Third-person writing allows for more flexibility, credibility, and objectivity. First-person and second-person should be avoided as it becomes narrative, directive, or opinionated (biased). As a professional wiki, information should be factual and unbiased (not favoring one or more sides) and should not narrate the writer or reader nor direct the reader to "take action". :''Incorrect'': <span class="MOSincorrect">I use my space ship to travel to different planets.</span> (First person) :''Incorrect'': <span class="MOSincorrect">You use your space ship to travel to different planets.</span> (Second person) :''Correct'': <span class="MOScorrect">The player uses their space ship to travel to different planets.</span> (Third person) Quotes and dialogue are exempt from the third person point-of-view rule, as these must be written as given. ====Biased vs unbiased==== {{SITENAME}} is an unbiased source, providing factual information by being impartial, or "equal/fair", towards the subject rather than being biased by stating opinions, or "favoring one side", that can be argumentative. When an information becomes biased, it directs the reader to "join that side" instead of allowing them to "make their own judgment". :''Incorrect'': <span class="MOSincorrect">Lin is the best to befriend, because she has the best smile.</span> (biased and argumentative, because it is ''insisting'' the reader to befriend Lin by stating she is "the best"; other readers may disagree) :''Correct'': <span class="MOScorrect">Befriending Lin gives the player free apple tree seeds.</span> (unbiased, because it allows the reader ''to make their own judgment'' if they should befriend Lin; there is nothing to agree or disagree on as it is clearly only stating facts) ===Capitalization=== Capitalization is when all articles are subjected to sentence-case, where capitalization is written in a way it would be written in a sentence. Non-proper nouns need to be lowercased. Proper nouns or the first letter of a sentence need to be capitalized. Avoid unnecessary capitalization. :''Incorrect'': <span class="MOSincorrect">the quarry was Abandoned.</span> :''Correct'': <span class="MOScorrect">The Quarry was abandoned.</span> Places in-game are treated as proper nouns. Names of items are to be capitalized for clarity. :''Incorrect'': <span class="MOSincorrect">blue reef, iceladus</span> :''Correct'': <span class="MOScorrect">Blue Reed, Iceladus</span> Articles are the words "the", "a", and "an". Articles should not be capitalized, unless it is the first word of a sentence or title. Conjunctions and prepositions should not be capitalized either, unless it is the first word of a sentence or title. ===Dates=== Dates in the {{SITENAME}} should all follow the same American English format (month-day-year). Dates in quotes and titles are left as-is. Dates should always be fully written out instead of using a numberical format (MM-DD-YYYY) :''Incorrect'': <span class="MOSincorrect">6th May 2021</span> :''Incorrect'': <span class="MOSincorrect">05-06-2021</span> :''Correct'': <span class="MOScorrect">May 6th 2021</span> ==Articles titles and headers== ===Article titles=== Article titles name should follow the same capitalization rules as above. Parenthesis are used to distinguish articles with the same name but different purposes. ===Article headers=== Article headers, such as sections, should never contain links, non-icon images, nor citation. Headers follow the sentence-case rule. Headers may be singular or plural form, whichever makes sense. ==Article bodies== The article body is the main content space of an article, including descriptive information, usage of various tools, and more. The editor should make sure they familiarize themselves with the [[:Category:Page_Layout_Guides|page layout guides]] prior to extensive editing. ===Links=== Links should be added to the first appearance of a word, if applicable. Do not link the same word or name multiple times in the same article. *To add a link, add double brackets on each end. For example: <code><nowiki>[[Blueberries]]</nowiki></code> **To link to a category or file, add a colon before the prefix. For example: <code><nowiki>[[:Category:Crops]]</nowiki></code> will be [[:Category:Crops]]. **To link a category or file without the prefix, add a pipe <code>|</code> at the end. For example: <code><nowiki>[[:Category:Crops|Crops]]</nowiki></code> will be [[:Category:Crops|Crops]]. *Different names for links can be added for clarity if needed by adding a pipe <code>|</code> at the end of the article name and before the different name. For example: <code><nowiki>[[Blueberries|different name]]</nowiki></code> will appear as "[[Blueberries|different name]]". *Be clear when adding links. Do not use a different name that puts the subject out of context. :::''Incorrect'': <span class="MOSincorrect">[[Blueberries|This]] and [[Corn|this]] can be obtained from harvesting crops.</span> :::''Correct'': <span class="MOScorrect">[[Blueberries]] and [[Corn]] can be obtained from harvesting crops.</span> *Blend linking are endings added immediately after a link (without a space after the link). These endings will be included in the link. For example: <code><nowiki>[[Potato]]es</nowiki></code> will appear as [[Potato]]es. **Avoid linking unnecessary words or punctuation. ::::''Incorrect'': <span class="MOSincorrect"><code><nowiki>[[Lin]]is OR [[Lin|Lin.]]</nowiki></code> will appear as [[Lin]]is OR [[Lin|Lin.]]</span> ::::''Correct'': <span class="MOScorrect"><code><nowiki>[[Lin]] is OR [[Lin]].</nowiki></code></span> *Captions in images should contain links if possible. ====Section linking==== Section linking can be used to direct the reader to the appropriate part of the page, rather than the beginning of the page. Section linking can be used on the same page or on a different page. Section linking is accomplished by placing a number sign <code>#</code> in the beginning of the link, after the opening brackets <nowiki>[[</nowiki>, or after the link name. However, to omit the <code>#</code> sign, you must use a different name. If used on the same page, the <code>#</code> is added at the beginning of the section name. :For example, on this page, rather than <code>[[Little-Known_Galaxy_Wiki:Manual of style#Section linking]]</code>, you can do <code>[[#Section linking]]</code> instead. Both accomplish the same task, but the latter is shorter and quicker. If section linking to a different page, you must first include the page name followed by the <code>#</code> sign and lastly the section name. ===Files=== Files are images, videos, or audio that help readers visualize the subject better. They should be high quality and pertain to the article. Avoid redundancy, irrelevancy, clutter, or otherwise unnecessary or obtrusive. Articles do not need to have multiple images of the subject. Galleries should be used to place all relevant images together without cluttering the article body, especially on individual item pages. Additionally, follow these principles pertaining to files: *Groups of files should be placed in the "gallery" section of the page. *Images should be the right size - size should not exceed half the page's width or be too small to see. *Captions should be clear and to-the-point. *File names should be clear, appropriate, and named properly. If you can't find an image through the search, then the file name is not appropriate. Name the file in a way it is relevant, clear, and can be easily searched in the wiki. ===Templates=== Templates should be added when necessary and avoided where it would detract from the actual content. All infoboxes need to use the infobox tags. *The prefix <code>Template:</code> inside curly brackets <code><nowiki>{{ }}</nowiki></code> are not necessary. ====Naming Convention==== To standardize naming conventions, please use the following rules when creating new templates. * Templates should begin with a capitalized letter in the first word. All other words should be lowercase. * Templates should have spaces between all words. ===Trivia=== Trivia are miscellaneous facts that are relevant to the article but do not meet the standards of being placed in the main body of the article. *Opinions are not allowed to be added. Opinions include but not limited to: "I think", "most players think", etc. *Do not be redundant. If the fact is already in the article, do not add it again. *All pertaining facts should be grouped together. *Do not add speculation. ==Category pages== Category pages are the navigator pages of a wiki. They list all articles containing the category, allowing readers to read other related articles. Categories allow readers to navigate to different, related articles on the wiki. Add only related, relevant categories. Do not add redundant categories. Categories must be added at the end of the page, if typing in the page editor. To add a category, use the prefix <code>Category:</code> and an existing category page name. For example: <code><nowiki>[[Category:Characters]]</nowiki></code>. To link to a category, add a colon before the <code>Category:</code> prefix, see [[#Section linking]]. ===Naming Conventions=== To standardize naming conventions, please use the following rules when creating new categories. * Categories must begin with a capitalized letter in the first word. All other words should be lowercase. * Categories must have spaces between all words. * Categories must be plural. ==Redirects== Redirects are pages that direct readers to another page if the initial page no longer exists or is applicable. Rather than being deleted, redirects help divert the reader to the correct page. For example, if the article was formerly named "Town" and was changed as a redirect to "Starlet Town", old links that had linked to "Town" will redirect all readers to "Starlet Town". You can also redirect to a section of a page, see [[#Section linking]]. To create a redirect, add <code><nowiki>#REDIRECT [[name of new page]]</nowiki></code>. :For example, <code><nowiki>#REDIRECT [[Blueberries]]</nowiki></code> ==Lists== ===Indentation=== To indent a line, add a colon <code>:</code> at the ''beginning'' of the line. For further indentation, add more colons. <pre> :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. </pre> Would result in... :This line is indented. ::This line is indented twice. :::::This line is indented even more. :This line is back to one indentation. ===Definition list=== Definition lists begin with a bolded statement, followed by an indented statement or definition. Rather than using single quote marks to bold a line, use a semi-colon <code>;</code> at the beginning instead. <pre> ;Statement :Definition :;Sub statement ::Sub definition </pre> Would result in... ;Statement :Definition :;Sub statement ::Sub definition ===Numbered list=== To add a numbered list, use a hashtag (#) at the beginning of a line. Do not separate each line with a space as it will break the numbering system. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> #Line 1 #Line 2 #Line 3 </pre> | <pre> #Line 1 #Line 2 #Line 3 </pre> |} ===Bullet points=== To create bullet points, use an asterisk (*) at the beginning of the line. Do not separate each line with a space. {|style="width:100%;" !width="50%"|Correct !Width="50%"|Incorrect |- valign="top" | <pre> *Line 1 **Indented line 1 *Line 2 **Indented line 2 ***Further indented line 2 of indented line 2 *Line 3 </pre> | <pre> *Line 1 *Line 2 *Line 3 </pre> |} [[Category:Wiki help]] f0522cc6907114d7fcc9fe426be327f488cb295e Category:Page Layout Guides 14 495 617 2024-05-29T13:19:48Z Geekette828 51691 Created page with "'''Looking for a guide type that isn't here? Please reach out to us in the #wiki channel of the official discord, and we can help!''' [[Category:Wiki_maintenance]]" wikitext text/x-wiki '''Looking for a guide type that isn't here? Please reach out to us in the #wiki channel of the official discord, and we can help!''' [[Category:Wiki_maintenance]] 995c558dabce2f7eb4c57291a68827ef9e0c0bba Little-Known Galaxy Wiki:Crop pages guide 4 496 619 2024-05-29T13:55:41Z Geekette828 51691 Created page with "{{Tocright}} '''[[:Category:Page Layout Guides|&larr; Back to Page Layout Guides]]''' This is a page layout guide for [[:Category:Crops|crops]]. All crop pages should follow the standards of this guide. ---- * Create new pages using premade templates for easier and consistent edits. Please hide unused sections instead of deleting them by using the HTML comment tag:<br /><nowiki><!-- content here --></nowiki> ==Section Order== For consistency, all articles must follow..." wikitext text/x-wiki {{Tocright}} '''[[:Category:Page Layout Guides|&larr; Back to Page Layout Guides]]''' This is a page layout guide for [[:Category:Crops|crops]]. All crop pages should follow the standards of this guide. ---- * Create new pages using premade templates for easier and consistent edits. Please hide unused sections instead of deleting them by using the HTML comment tag:<br /><nowiki><!-- content here --></nowiki> ==Section Order== For consistency, all articles must follow a general layout, and use the same headers.<br> 1 Notices <br> 2 Infobox<br> 3 Summary<br> 4 Growth Stages <br> 5 Sources<br> &nbsp;&nbsp;&nbsp; 5.1 Purchased<br> &nbsp;&nbsp;&nbsp; 5.2 Crafted<br> &nbsp;&nbsp;&nbsp; 5.3 Dropped<br> &nbsp;&nbsp;&nbsp; 5.4 Gifted<br> &nbsp;&nbsp;&nbsp; 5.5 Quest Reward<br> 6 Uses<br> &nbsp;&nbsp;&nbsp; 6.1 Gifting<br> &nbsp;&nbsp;&nbsp; 6.2 Recipes<br> &nbsp;&nbsp;&nbsp; 6.2 Questing<br> 7 Gallery<br> 8 Trivia<br> 9 History<br> 10 Navigation<br> &nbsp;&nbsp;&nbsp; 10.1 Navbox<br> 11 Additional Manual Categories<br> ==Crop Infobox== Use {{T|Crop infobox}}. ==Summary== This section should not have a header, so it will come before the TOC. It should provide general crop and seed information to the user. ==Growth Stages== <!--Use the {{T|Growth stages}} template to display the stages the seed goes through until it is a full grown crop.--> ==Sources== The sources H2 should only have text under it if there is a unique way to acquire this item. If it is listed in any of the other sections, nothing will go here. ==Purchased== This should be the first sub-section of Acquisition. This should have a H3 header.<br> Use {{T|Shop availability}} <pre> ===Purchased=== {{Shop availability}} </pre> ==Crafting== ==Dropped By== This should be the third sub-section of Sources. This should have a H3 header.<br> Use {{T|item as drop}} ==Gifted== List out the NPCs that will give the player this item as a gift. ==Quest Reward== Use {{T|item as quest reward}}}} ==Uses== This H2 lists all of the uses for that item. ==Gifting== Use {{T|gifted item}} <pre> {{gifted item |love = |like = |neutral = universal |dislike = }}</pre> ===Recipes=== Use {{T|item as ingredient}}. Will pull from cargo tables anywhere that this item is an ingredient of something else. ===Questing=== Use {{T|item required for quest}}. ==Media== Any appearance in videos, illustrations, or other official media should be added in the Gallery section. <pre> ==Media== <gallery widths="200" bordercolor="transparent" spacing="small" captionalign="center"> </gallery> </pre> * For Portraits, videos, and other official media, the widths should be 200. * For sprites the widths should be 100. ==Trivia== Each trivia item should start with a bullet. <nowiki> * </nowiki> It should not be things that are elsewhere in the article. <pre> ==Trivia== * * </pre> ==Change History== The {{T|History}} template is used here. <pre> ==History== {{History|<!--Version Number-->|<!--What was changed-->}} </pre> ==Navigation== The {{T|Agriculture navbox}} should be used at the bottom of each crop page. <pre> {{Agriculture navbox|crop}} </pre> [[Category:Page Layout Guides]] 2b25b9a9a71bbc2138b45d47f6dc2c316879b1b3 MediaWiki:Sidebar 8 497 620 2024-05-29T16:01:15Z Geekette828 51691 Created page with " * navigation ** mainpage|mainpage-description ** Characters | Characters ** randompage-url|randompage *Wiki ** Little-Known Galaxy Wiki:Rules | Wiki rules ** recentchanges-url|recentchanges ** Little-Known Galaxy Wiki:Projects | Wiki projects ** Little-Known Galaxy Wiki:Manual of style | Style guide ** Special:CargoTables|Cargo * TOOLBOX * LANGUAGES" wikitext text/x-wiki * navigation ** mainpage|mainpage-description ** Characters | Characters ** randompage-url|randompage *Wiki ** Little-Known Galaxy Wiki:Rules | Wiki rules ** recentchanges-url|recentchanges ** Little-Known Galaxy Wiki:Projects | Wiki projects ** Little-Known Galaxy Wiki:Manual of style | Style guide ** Special:CargoTables|Cargo * TOOLBOX * LANGUAGES 72f12c0e7f4e7d22223ade3037afea568c4aa52d 622 620 2024-05-29T16:05:59Z Geekette828 51691 wikitext text/x-wiki * navigation ** mainpage|mainpage-description ** Characters | Characters ** randompage-url|randompage *Wiki ** Little-Known Galaxy Wiki:Rules | Wiki rules ** recentchanges-url|recentchanges ** Little-Known Galaxy Wiki:Projects | Wiki projects ** Little-Known Galaxy Wiki:Manual of style | Style guide ** Special:SpecialPages|Special pages ** Special:CargoTables|Cargo * TOOLBOX * LANGUAGES 91537068b364c6fee701ab329fe6187c8876e7f7 Little-Known Galaxy Wiki:Projects 4 498 621 2024-05-29T16:05:08Z Geekette828 51691 Created page with "{{tocright}} Want to help the wiki but unsure where to start editing? This page holds a list of ongoing tasks. Jumping in and contributing to any of these projects will help make the wiki better! Editors should add projects they would like to see, or remove ones they have completed. ==Article Work== Review the [[Little-Known Galaxy Wiki:Manual_of_style|Manual of Style]] to help with editing articles. *All pages need to be created. ==Maintenance Work== A more extensiv..." wikitext text/x-wiki {{tocright}} Want to help the wiki but unsure where to start editing? This page holds a list of ongoing tasks. Jumping in and contributing to any of these projects will help make the wiki better! Editors should add projects they would like to see, or remove ones they have completed. ==Article Work== Review the [[Little-Known Galaxy Wiki:Manual_of_style|Manual of Style]] to help with editing articles. *All pages need to be created. ==Maintenance Work== A more extensive list of maintenance tasks can be found at [[:Category:Article_management]]. *Wiki set up is still ongoing. ==Template Work== Check out [[:Category:Templates]] for a list of all templates. *Wiki set up is still ongoing. ==Community Suggestions== Things that come through various community channels as things the community may like to see in the future. Priority is based off of impact of useful-ess, and how often it is requested. Add your own request here - or drop us a suggestion in the official discord. [[Category:Wiki help]] 0433e80a6a3eeafc47a1db81d2b21187ca46261a 623 621 2024-05-29T16:07:37Z Geekette828 51691 wikitext text/x-wiki {{tocright}} Want to help the wiki but unsure where to start editing? This page holds a list of ongoing tasks. Jumping in and contributing to any of these projects will help make the wiki better! Editors should add projects they would like to see, or remove ones they have completed. ==Article Work== Review the [[Little-Known Galaxy Wiki:Manual_of_style|Manual of Style]] to help with editing articles. *All pages need to be created. ==Maintenance Work== A more extensive list of maintenance tasks can be found at [[:Category:Wiki_maintenance]]. *Wiki set up is still ongoing. ==Template Work== Check out [[:Category:Templates]] for a list of all templates. *Wiki set up is still ongoing. ==Community Suggestions== Things that come through various community channels as things the community may like to see in the future. Priority is based off of impact of useful-ess, and how often it is requested. Add your own request here - or drop us a suggestion in the official discord. [[Category:Wiki help]] 6d2e2e57a68d4a2979664399868c16cc1f772c74 Category:Wiki help 14 499 624 2024-05-29T16:10:22Z Geekette828 51691 Created page with "[[Category:{{SITENAME}}]]" wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 Little-Known Galaxy Wiki:Rules 4 500 625 2024-05-29T16:10:47Z Geekette828 51691 Created page with "{{tocright}} Below are the '''community rules''' for the {{SITENAME}} Wiki. Infringing upon any of these rules will result in either a warning or a temporary/permanent ban, depending on the circumstances. ==Community Guidelines== ===Personal Attacks=== Users should never personally attack other members of the wiki community on any part of the site. Comments should focus on the content, not the person. While contributing to the wiki, it is possible that a user may disa..." wikitext text/x-wiki {{tocright}} Below are the '''community rules''' for the {{SITENAME}} Wiki. Infringing upon any of these rules will result in either a warning or a temporary/permanent ban, depending on the circumstances. ==Community Guidelines== ===Personal Attacks=== Users should never personally attack other members of the wiki community on any part of the site. Comments should focus on the content, not the person. While contributing to the wiki, it is possible that a user may disagree with how the information on a certain page is presented. It is expected that the two users will reach a consensus when they are in disagreement by using a talk page rather than constantly editing and/or reverting changes. ===Assume good faith=== If a wiki editor makes a mistake due to human error, the fact that they are new to the community, or any other honest reason, fellow wiki community members must assume good faith. Rather than insulting, berating, or lashing out at the editor, community members should approach situations like these with a helpful and understanding attitude. ==Vandalism== Wiki vandalism will be defined as intentionally adding, removing, or changing content to the wiki in order to compromise the integrity of the site. It is strictly prohibited. Please be advised, we have a "one strike" rule for people who edit the wiki maliciously. If it is clear the user put wrong data in to be malicious, they will be banned right away. No questions asked. Users can reach out to admins for an appeal. '''Examples of vandalism include but are not limited to:''' *Inserting nonsense/gibberish into page content. *Uploading offensive images. *Blanking page content. *Spamming links to external sites unrelated to the content of the {{SITENAME}} Wiki. Wrong data that was input non-maliciously will be corrected, with a note on how it was wrong (the biggest offender here are various skills that will show different prices in the game). Continued offenders will be talked with and eventually banned; there is no "set number of strikes", as people make mistakes all of the time. It will be handled on a case-by-case basis. ==Article and Page Guidelines== {{main|Little-Known Galaxy Wiki:Manual of style}} * [https://en.wikipedia.org/wiki/American_English U.S. English] only. This is in keeping the same language, style, and spelling as used in-game. * No profane, sexually explicit, or any inappropriate language except for informing usage in-game. * Formal English. No colloquialisms or contracted forms. * "Encyclopedia" style. No first or second person perspectives, opinions, subjections, or any personal bias. ===Talk pages=== *When making comments or asking questions on a talk page, be sure to sign the end with four tildes (<code><nowiki>~~~~</nowiki></code>). *Always remain civil during discussions. *An article's talk page is intended for discussion or questions regarding the article's content. It is not a forum for casual discussion. Game suggestions, personal stories, shout-outs, etc. will be removed. *Generally, other users' contributions should not be edited, except for maintenance tasks like fixing links or templates. ==Bugs== Bugs are only permitted in wiki articles in rare circumstances. '''Most bugs should not be placed in wiki articles''', and should instead be reported at the bug sections of the official discord. The wiki is '''not''' meant to be a tracking system for bugs. In order for a bug to be included in a wiki article, it must meet the following criteria: * The bug posting must be properly referenced by including a link to a thread at the [https://discord.com/invite/gVxUqge9Xf Official Little-Known Galaxy Discord] where a staff member verified the bug's existence, or where a multitude of players show agreement that the bug exists. * It must cause significant harm in one of the following ways: ** The bug can potentially corrupt players' ''{{SITENAME}}'' save files. ** The bug could result in permanent loss of inventory items or alteration of important world tiles. Bugs that only consist of minor glitches or exploitable behavior (cheats such as duplication bugs) should '''not''' be placed in articles. "Famous" and longtime prominent glitches or exploits that have been openly discussed at length by the developers may be included, but this is a very rare occurrence. ==Trivia== "Trivia" is a broad term that often invites creativity and speculation, especially regarding a game element's "possible reference" to other media. To prevent this resulting in long lists of low-quality "cruft" and other unsubstantiated opinions, trivia items should only be added if they conform to the following: *The trivia item is confirmed by {{SITENAME}}'s staff, in which case it should include a link to a forum post or other record of that confirmation. *If no staff confirmation is available, the trivia item must be "undeniable", meaning that most players are likely to agree it is obvious. '''When there could be multiple valid theories that are each just as likely, do not post any.''' Trivia sections do not exist for the purpose of listing possible theories. *Trivia should not generally describe a game element's function, nor tips on using or dealing with it, unless these are mentioned only as they relate to points of trivial interest that have little bearing on playing the game. [[Category:{{SITENAME}}]] 09380491db0d57fd4a075ffb68c8d3726b15c3b7 626 625 2024-05-29T16:11:20Z Geekette828 51691 Protected "[[Little-Known Galaxy Wiki:Rules]]" ([Edit=Allow only administrators] (indefinite)) wikitext text/x-wiki {{tocright}} Below are the '''community rules''' for the {{SITENAME}} Wiki. Infringing upon any of these rules will result in either a warning or a temporary/permanent ban, depending on the circumstances. ==Community Guidelines== ===Personal Attacks=== Users should never personally attack other members of the wiki community on any part of the site. Comments should focus on the content, not the person. While contributing to the wiki, it is possible that a user may disagree with how the information on a certain page is presented. It is expected that the two users will reach a consensus when they are in disagreement by using a talk page rather than constantly editing and/or reverting changes. ===Assume good faith=== If a wiki editor makes a mistake due to human error, the fact that they are new to the community, or any other honest reason, fellow wiki community members must assume good faith. Rather than insulting, berating, or lashing out at the editor, community members should approach situations like these with a helpful and understanding attitude. ==Vandalism== Wiki vandalism will be defined as intentionally adding, removing, or changing content to the wiki in order to compromise the integrity of the site. It is strictly prohibited. Please be advised, we have a "one strike" rule for people who edit the wiki maliciously. If it is clear the user put wrong data in to be malicious, they will be banned right away. No questions asked. Users can reach out to admins for an appeal. '''Examples of vandalism include but are not limited to:''' *Inserting nonsense/gibberish into page content. *Uploading offensive images. *Blanking page content. *Spamming links to external sites unrelated to the content of the {{SITENAME}} Wiki. Wrong data that was input non-maliciously will be corrected, with a note on how it was wrong (the biggest offender here are various skills that will show different prices in the game). Continued offenders will be talked with and eventually banned; there is no "set number of strikes", as people make mistakes all of the time. It will be handled on a case-by-case basis. ==Article and Page Guidelines== {{main|Little-Known Galaxy Wiki:Manual of style}} * [https://en.wikipedia.org/wiki/American_English U.S. English] only. This is in keeping the same language, style, and spelling as used in-game. * No profane, sexually explicit, or any inappropriate language except for informing usage in-game. * Formal English. No colloquialisms or contracted forms. * "Encyclopedia" style. No first or second person perspectives, opinions, subjections, or any personal bias. ===Talk pages=== *When making comments or asking questions on a talk page, be sure to sign the end with four tildes (<code><nowiki>~~~~</nowiki></code>). *Always remain civil during discussions. *An article's talk page is intended for discussion or questions regarding the article's content. It is not a forum for casual discussion. Game suggestions, personal stories, shout-outs, etc. will be removed. *Generally, other users' contributions should not be edited, except for maintenance tasks like fixing links or templates. ==Bugs== Bugs are only permitted in wiki articles in rare circumstances. '''Most bugs should not be placed in wiki articles''', and should instead be reported at the bug sections of the official discord. The wiki is '''not''' meant to be a tracking system for bugs. In order for a bug to be included in a wiki article, it must meet the following criteria: * The bug posting must be properly referenced by including a link to a thread at the [https://discord.com/invite/gVxUqge9Xf Official Little-Known Galaxy Discord] where a staff member verified the bug's existence, or where a multitude of players show agreement that the bug exists. * It must cause significant harm in one of the following ways: ** The bug can potentially corrupt players' ''{{SITENAME}}'' save files. ** The bug could result in permanent loss of inventory items or alteration of important world tiles. Bugs that only consist of minor glitches or exploitable behavior (cheats such as duplication bugs) should '''not''' be placed in articles. "Famous" and longtime prominent glitches or exploits that have been openly discussed at length by the developers may be included, but this is a very rare occurrence. ==Trivia== "Trivia" is a broad term that often invites creativity and speculation, especially regarding a game element's "possible reference" to other media. To prevent this resulting in long lists of low-quality "cruft" and other unsubstantiated opinions, trivia items should only be added if they conform to the following: *The trivia item is confirmed by {{SITENAME}}'s staff, in which case it should include a link to a forum post or other record of that confirmation. *If no staff confirmation is available, the trivia item must be "undeniable", meaning that most players are likely to agree it is obvious. '''When there could be multiple valid theories that are each just as likely, do not post any.''' Trivia sections do not exist for the purpose of listing possible theories. *Trivia should not generally describe a game element's function, nor tips on using or dealing with it, unless these are mentioned only as they relate to points of trivial interest that have little bearing on playing the game. [[Category:{{SITENAME}}]] 09380491db0d57fd4a075ffb68c8d3726b15c3b7 Little-Known Galaxy Wiki 0 199 628 219 2024-05-29T16:48:37Z Geekette828 51691 WIP wikitext text/x-wiki <div id="mp-layout1-container"> <div class="mp-box" id="mp-box-welcome"><!-- BEGIN Welcome box --> <div id="mp-welcome"> <h2 class="welcome-message"> Welcome to {{SITENAME}}! </h2> a comprehensive reference written and maintained by the players.<br> We are currently maintaining [[Special:Statistics|{{NUMBEROFARTICLES}} articles]]. Please feel free to contribute by creating new articles or expanding existing ones. <!-- --><div class="" style="text-align:center;"><!-- --><p><strong>Official links:</strong><br> <span style="display: inline-block;"><!-- -->[[File:lkg.svg|40px|link=https://www.littleknowngalaxy.com/|Website]]&nbsp;<!-- -->[[File:Discord.svg|40px|link=https://discord.com/invite/gVxUqge9Xf|Discord]]&nbsp;<!-- -->[[File:Twitter.svg|40px|link=https://twitter.com/LittleKnownGlxy|Twitter]]&nbsp;<!-- [[File:Reddit.svg|40px|link=https://www.reddit.com/r/LittleKnownGalaxy|Reddit]]&nbsp;<!-- -->[[File:YouTube.svg|40px|link=https://www.youtube.com/@carbonkay|YouTube]]&nbsp;<!-- [[File:Facebook.svg|40px|link=https://www.facebook.com/profile.php?id=xxxxxx|Facebook]]&nbsp;<!-- -->[[File:Instagram.svg|40px|link=https://www.instagram.com/carbonandkay/|Instagram]]&nbsp;<!-- [[File:Tumblr.svg|40px|link=https://lkg.tumblr.com/|Tumblr]]&nbsp;<!-- [[File:Pinterest.svg|40px|link=https://www.pinterest.com/lkg/|Pinterest]]&nbsp;<!-- [[File:Patreon.svg|40px|link=https://www.patreon.com/lkg|Patreon]]&nbsp;<!-- -->[[File:Steam.svg|40px|link=https://store.steampowered.com/app/2521600/LittleKnown_Galaxy/|Steam]]&nbsp;<!-- --><!--[[File:Nintendo Switch.svg|40px|link=|Switch]]&nbsp;--><!-- --></span></p><!-- --></div> </div> <div id="mp-banner"></div> </div><!-- END Welcome box --> <div class="mp-box" id="mp-box-about"><!-- BEGIN about box --> ==About Little-Known Galaxy== <div class="mp-body"> Join Space Alliance as a new captain-in-training and work with your crew to solve the mysteries of an ancient relic found on the Grey Planet. Little-Known Galaxy is a cozy single-player RPG space adventure full of friendly characters, exploration, crafting, and farming. Unlock the secret of a mysterious relic and complete your Star Alliance mission. What mysteries will it uncover? What kind of adventure lies ahead? And who will you meet along the way? It’s up to you now Captain. Remember to support your crew, follow your heart, and always take care of each other. </div> </div><!-- END about box --> <div class="mp-box centered-content" id="mp-box-featured"><!-- BEGIN featured box --> ==Featured Pages== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Important page here|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Another important page here|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> </div><!-- END featured box --> <div class="mp-box centered-content" id="mp-box-basics"><!-- BEGIN basics box --> ==The Basics== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Navbox|link=Template:Navbox|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Infobox Character|link=Template:Infobox Character|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> <!--<div style="text-align:right">[[PLACEHOLDERNAMEHERE|Read more...]]</div>--> </div><!--END basics box--> <div class="mp-box centered-content" id="mp-box-gallery"><!-- BEGIN gallery box--> == High-Priority Projects == <div class="mp-body"> <div class="mp-links columns-3"> * {{MP link|Getting started guide}} * {{MP link|Level guides}} * {{MP link|Other information here}} </div> </div> </div><!--END gallery box--> <div class="mp-box centered-content" id="mp-box-links"><!-- BEGIN lists box --> == Useful Links == <div class="mp-body"> <div class="mp-links columns-4"> * {{MP link|Items}} * {{MP link|Characters}} * {{MP link|Spells}} * {{MP link|Mobs}} * {{MP link|Other}} * {{MP link|Game}} * {{MP link|Elements}} </div> </div> </div><!-- END lists box --> <div class="mp-box" id="mp-box-contribute"><!-- BEGIN contribute box--> ==Contribute to the Wiki== <div class="mp-body"> {{SITENAME}} is a collaborative wiki resource that is open for anyone to edit. You don't need special permission beyond [[Special:UserLogin/signup|registering]] an account to edit most pages, and your contributions can grow the wiki and help other players. ; '''Adding content''' :* If you are unsure of what to do or how to create a page, search for a few articles on the same topic and see what they look like. You can always view the source code in a wiki and learn from what others have done. :* An edit doesn't have to be massive; if you feel you don't want to create whole articles, then just fixing spelling errors and broken links is enough. :* [[Special:UserLogin/signup|Register]] to edit and track your contributions. </div> </div><!-- END contribute box --> </div> {{#description2:Welcome to the {{SITENAME}}, a collaborative wiki resource that is open for anyone to edit!}} __NOTITLE__ __NOTOC__ __NOEDITSECTION__ [[Category:{{SITENAME}}| ]] f48b0b0ce4f42b13b14c5d71a4d334acb7676796 629 628 2024-05-29T16:53:30Z Geekette828 51691 WIP wikitext text/x-wiki <div id="mp-layout1-container"> <div class="mp-box" id="mp-box-welcome"><!-- BEGIN Welcome box --> <div id="mp-welcome"> <div style="font-size: 35px;">Welcome to {{SITENAME}}!</div> [[File:Site-logo.png|center|frameless]] a comprehensive reference written and maintained by the players.<br> We are currently maintaining [[Special:Statistics|{{NUMBEROFARTICLES}} articles]]. Please feel free to contribute by creating new articles or expanding existing ones. <!-- --><div class="" style="text-align:center;"><!-- --><p><strong>Official links:</strong><br> <span style="display: inline-block;"><!-- -->[[File:lkg.svg|40px|link=https://www.littleknowngalaxy.com/|Website]]&nbsp;<!-- -->[[File:Discord.svg|40px|link=https://discord.com/invite/gVxUqge9Xf|Discord]]&nbsp;<!-- -->[[File:Twitter.svg|40px|link=https://twitter.com/LittleKnownGlxy|Twitter]]&nbsp;<!-- [[File:Reddit.svg|40px|link=https://www.reddit.com/r/LittleKnownGalaxy|Reddit]]&nbsp;<!-- -->[[File:YouTube.svg|40px|link=https://www.youtube.com/@carbonkay|YouTube]]&nbsp;<!-- [[File:Facebook.svg|40px|link=https://www.facebook.com/profile.php?id=xxxxxx|Facebook]]&nbsp;<!-- -->[[File:Instagram.svg|40px|link=https://www.instagram.com/carbonandkay/|Instagram]]&nbsp;<!-- [[File:Tumblr.svg|40px|link=https://lkg.tumblr.com/|Tumblr]]&nbsp;<!-- [[File:Pinterest.svg|40px|link=https://www.pinterest.com/lkg/|Pinterest]]&nbsp;<!-- [[File:Patreon.svg|40px|link=https://www.patreon.com/lkg|Patreon]]&nbsp;<!-- -->[[File:Steam.svg|40px|link=https://store.steampowered.com/app/2521600/LittleKnown_Galaxy/|Steam]]&nbsp;<!-- --><!--[[File:Nintendo Switch.svg|40px|link=|Switch]]&nbsp;--><!-- --></span></p><!-- --></div> </div> <div id="mp-banner"></div> </div><!-- END Welcome box --> <div class="mp-box" id="mp-box-about"><!-- BEGIN about box --> ==About Little-Known Galaxy== <div class="mp-body"> Join Space Alliance as a new captain-in-training and work with your crew to solve the mysteries of an ancient relic found on the Grey Planet. Little-Known Galaxy is a cozy single-player RPG space adventure full of friendly characters, exploration, crafting, and farming. Unlock the secret of a mysterious relic and complete your Star Alliance mission. What mysteries will it uncover? What kind of adventure lies ahead? And who will you meet along the way? It’s up to you now Captain. Remember to support your crew, follow your heart, and always take care of each other. </div> </div><!-- END about box --> <div class="mp-box centered-content" id="mp-box-featured"><!-- BEGIN featured box --> ==Featured Pages== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Important page here|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Another important page here|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> </div><!-- END featured box --> <div class="mp-box centered-content" id="mp-box-basics"><!-- BEGIN basics box --> ==The Basics== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Navbox|link=Template:Navbox|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Infobox Character|link=Template:Infobox Character|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> <!--<div style="text-align:right">[[PLACEHOLDERNAMEHERE|Read more...]]</div>--> </div><!--END basics box--> <div class="mp-box centered-content" id="mp-box-gallery"><!-- BEGIN gallery box--> == High-Priority Projects == <div class="mp-body"> <div class="mp-links columns-3"> * {{MP link|Getting started guide}} * {{MP link|Level guides}} * {{MP link|Other information here}} </div> </div> </div><!--END gallery box--> <div class="mp-box centered-content" id="mp-box-links"><!-- BEGIN lists box --> == Useful Links == <div class="mp-body"> <div class="mp-links columns-4"> * {{MP link|Items}} * {{MP link|Characters}} * {{MP link|Spells}} * {{MP link|Mobs}} * {{MP link|Other}} * {{MP link|Game}} * {{MP link|Elements}} </div> </div> </div><!-- END lists box --> <div class="mp-box" id="mp-box-contribute"><!-- BEGIN contribute box--> ==Contribute to the Wiki== <div class="mp-body"> {{SITENAME}} is a collaborative wiki resource that is open for anyone to edit. You don't need special permission beyond [[Special:UserLogin/signup|registering]] an account to edit most pages, and your contributions can grow the wiki and help other players. ; '''Adding content''' :* If you are unsure of what to do or how to create a page, search for a few articles on the same topic and see what they look like. You can always view the source code in a wiki and learn from what others have done. :* An edit doesn't have to be massive; if you feel you don't want to create whole articles, then just fixing spelling errors and broken links is enough. :* [[Special:UserLogin/signup|Register]] to edit and track your contributions. </div> </div><!-- END contribute box --> </div> {{#description2:Welcome to the {{SITENAME}}, a collaborative wiki resource that is open for anyone to edit!}} __NOTITLE__ __NOTOC__ __NOEDITSECTION__ [[Category:{{SITENAME}}| ]] c2beea9cb8b534cf673857e7aed72c2219af4ce4 632 629 2024-05-29T17:06:28Z Geekette828 51691 wikitext text/x-wiki <div id="mp-layout1-container"> <div class="mp-box" id="mp-box-welcome"><!-- BEGIN Welcome box --> <div id="mp-welcome"> <div style="font-size: 35px;">Welcome to {{SITENAME}}!</div> [[File:Site-logo.png|center|frameless]] a comprehensive reference written and maintained by the players.<br> We are currently maintaining [[Special:Statistics|{{NUMBEROFARTICLES}} articles]]. Please feel free to contribute by creating new articles or expanding existing ones. <!-- --><div class="" style="text-align:center;"><!-- --><p><strong>Official links:</strong><br> <span style="display: inline-block;"><!-- -->[[File:Website.svg|40px|link=https://www.littleknowngalaxy.com/|Website]]&nbsp;<!-- -->[[File:Discord.svg|40px|link=https://discord.com/invite/gVxUqge9Xf|Discord]]&nbsp;<!-- -->[[File:Twitter.svg|40px|link=https://twitter.com/LittleKnownGlxy|Twitter]]&nbsp;<!-- [[File:Reddit.svg|40px|link=https://www.reddit.com/r/LittleKnownGalaxy|Reddit]]&nbsp;<!-- -->[[File:YouTube.svg|40px|link=https://www.youtube.com/@carbonkay|YouTube]]&nbsp;<!-- [[File:Facebook.svg|40px|link=https://www.facebook.com/profile.php?id=xxxxxx|Facebook]]&nbsp;<!-- -->[[File:Instagram.svg|40px|link=https://www.instagram.com/carbonandkay/|Instagram]]&nbsp;<!-- [[File:Tumblr.svg|40px|link=https://lkg.tumblr.com/|Tumblr]]&nbsp;<!-- [[File:Pinterest.svg|40px|link=https://www.pinterest.com/lkg/|Pinterest]]&nbsp;<!-- [[File:Patreon.svg|40px|link=https://www.patreon.com/lkg|Patreon]]&nbsp;<!-- -->[[File:Steam.svg|40px|link=https://store.steampowered.com/app/2521600/LittleKnown_Galaxy/|Steam]]&nbsp;<!-- --><!--[[File:Nintendo Switch.svg|40px|link=|Switch]]&nbsp;--><!-- --></span></p><!-- --></div> </div> <div id="mp-banner"></div> </div><!-- END Welcome box --> <div class="mp-box" id="mp-box-about"><!-- BEGIN about box --> ==About Little-Known Galaxy== <div class="mp-body"> Join Space Alliance as a new captain-in-training and work with your crew to solve the mysteries of an ancient relic found on the Grey Planet. Little-Known Galaxy is a cozy single-player RPG space adventure full of friendly characters, exploration, crafting, and farming. Unlock the secret of a mysterious relic and complete your Star Alliance mission. What mysteries will it uncover? What kind of adventure lies ahead? And who will you meet along the way? It’s up to you now Captain. Remember to support your crew, follow your heart, and always take care of each other. </div> </div><!-- END about box --> <div class="mp-box centered-content" id="mp-box-featured"><!-- BEGIN featured box --> ==Featured Pages== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Important page here|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Another important page here|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> </div><!-- END featured box --> <div class="mp-box centered-content" id="mp-box-basics"><!-- BEGIN basics box --> ==The Basics== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Navbox|link=Template:Navbox|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Infobox Character|link=Template:Infobox Character|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> <!--<div style="text-align:right">[[PLACEHOLDERNAMEHERE|Read more...]]</div>--> </div><!--END basics box--> <div class="mp-box centered-content" id="mp-box-gallery"><!-- BEGIN gallery box--> == High-Priority Projects == <div class="mp-body"> <div class="mp-links columns-3"> * {{MP link|Getting started guide}} * {{MP link|Level guides}} * {{MP link|Other information here}} </div> </div> </div><!--END gallery box--> <div class="mp-box centered-content" id="mp-box-links"><!-- BEGIN lists box --> == Useful Links == <div class="mp-body"> <div class="mp-links columns-4"> * {{MP link|Items}} * {{MP link|Characters}} * {{MP link|Spells}} * {{MP link|Mobs}} * {{MP link|Other}} * {{MP link|Game}} * {{MP link|Elements}} </div> </div> </div><!-- END lists box --> <div class="mp-box" id="mp-box-contribute"><!-- BEGIN contribute box--> ==Contribute to the Wiki== <div class="mp-body"> {{SITENAME}} is a collaborative wiki resource that is open for anyone to edit. You don't need special permission beyond [[Special:UserLogin/signup|registering]] an account to edit most pages, and your contributions can grow the wiki and help other players. ; '''Adding content''' :* If you are unsure of what to do or how to create a page, search for a few articles on the same topic and see what they look like. You can always view the source code in a wiki and learn from what others have done. :* An edit doesn't have to be massive; if you feel you don't want to create whole articles, then just fixing spelling errors and broken links is enough. :* [[Special:UserLogin/signup|Register]] to edit and track your contributions. </div> </div><!-- END contribute box --> </div> {{#description2:Welcome to the {{SITENAME}}, a collaborative wiki resource that is open for anyone to edit!}} __NOTITLE__ __NOTOC__ __NOEDITSECTION__ [[Category:{{SITENAME}}| ]] 7af106df63b899d73e6b259f9cc86a7ad6d38f13 637 632 2024-05-29T17:23:14Z Geekette828 51691 wikitext text/x-wiki <div id="mp-layout1-container"> <div class="mp-box" id="mp-box-welcome"><!-- BEGIN Welcome box --> <div id="mp-welcome"> <div style="font-size: 35px;">Welcome to {{SITENAME}}!</div> [[File:Site-logo.png|center|frameless]] a comprehensive reference written and maintained by the players.<br> We are currently maintaining [[Special:Statistics|{{NUMBEROFARTICLES}} articles]]. Please feel free to contribute by creating new articles or expanding existing ones. <!-- --><div class="" style="text-align:center;"><!-- --><p><strong>Official links:</strong><br> <span style="display: inline-block;"><!-- -->[[File:LKG_web_icon.png|40px|link=https://www.littleknowngalaxy.com/|Website]]&nbsp;<!-- -->[[File:Discord.svg|40px|link=https://discord.com/invite/gVxUqge9Xf|Discord]]&nbsp;<!-- -->[[File:Twitter.svg|40px|link=https://twitter.com/LittleKnownGlxy|Twitter]]&nbsp;<!-- [[File:Reddit.svg|40px|link=https://www.reddit.com/r/LittleKnownGalaxy|Reddit]]&nbsp;<!-- -->[[File:YouTube.svg|40px|link=https://www.youtube.com/@carbonkay|YouTube]]&nbsp;<!-- [[File:Facebook.svg|40px|link=https://www.facebook.com/profile.php?id=xxxxxx|Facebook]]&nbsp;<!-- -->[[File:Instagram.svg|40px|link=https://www.instagram.com/carbonandkay/|Instagram]]&nbsp;<!-- [[File:Tumblr.svg|40px|link=https://lkg.tumblr.com/|Tumblr]]&nbsp;<!-- [[File:Pinterest.svg|40px|link=https://www.pinterest.com/lkg/|Pinterest]]&nbsp;<!-- [[File:Patreon.svg|40px|link=https://www.patreon.com/lkg|Patreon]]&nbsp;<!-- -->[[File:Steam.svg|40px|link=https://store.steampowered.com/app/2521600/LittleKnown_Galaxy/|Steam]]&nbsp;<!-- --><!--[[File:Nintendo Switch.svg|40px|link=|Switch]]&nbsp;--><!-- --></span></p><!-- --></div> </div> <div id="mp-banner"></div> </div><!-- END Welcome box --> <div class="mp-box" id="mp-box-about"><!-- BEGIN about box --> ==About Little-Known Galaxy== <div class="mp-body"> Join Space Alliance as a new captain-in-training and work with your crew to solve the mysteries of an ancient relic found on the Grey Planet. Little-Known Galaxy is a cozy single-player RPG space adventure full of friendly characters, exploration, crafting, and farming. Unlock the secret of a mysterious relic and complete your Star Alliance mission. What mysteries will it uncover? What kind of adventure lies ahead? And who will you meet along the way? It’s up to you now Captain. Remember to support your crew, follow your heart, and always take care of each other. </div> </div><!-- END about box --> <div class="mp-box centered-content" id="mp-box-featured"><!-- BEGIN featured box --> ==Featured Pages== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Important page here|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Another important page here|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> </div><!-- END featured box --> <div class="mp-box centered-content" id="mp-box-basics"><!-- BEGIN basics box --> ==The Basics== <div class="mp-body"> <div class="mp-links columns-3 stretch"> * {{MP link|Navbox|link=Template:Navbox|image=Wiki.gg logo-pink.svg|size=92px}} * {{MP link|Infobox Character|link=Template:Infobox Character|image=Wiki.gg logo-pink.svg|size=92px}} </div> </div> <!--<div style="text-align:right">[[PLACEHOLDERNAMEHERE|Read more...]]</div>--> </div><!--END basics box--> <div class="mp-box centered-content" id="mp-box-gallery"><!-- BEGIN gallery box--> == High-Priority Projects == <div class="mp-body"> <div class="mp-links columns-3"> * {{MP link|Getting started guide}} * {{MP link|Level guides}} * {{MP link|Other information here}} </div> </div> </div><!--END gallery box--> <div class="mp-box centered-content" id="mp-box-links"><!-- BEGIN lists box --> == Useful Links == <div class="mp-body"> <div class="mp-links columns-4"> * {{MP link|Items}} * {{MP link|Characters}} * {{MP link|Spells}} * {{MP link|Mobs}} * {{MP link|Other}} * {{MP link|Game}} * {{MP link|Elements}} </div> </div> </div><!-- END lists box --> <div class="mp-box" id="mp-box-contribute"><!-- BEGIN contribute box--> ==Contribute to the Wiki== <div class="mp-body"> {{SITENAME}} is a collaborative wiki resource that is open for anyone to edit. You don't need special permission beyond [[Special:UserLogin/signup|registering]] an account to edit most pages, and your contributions can grow the wiki and help other players. ; '''Adding content''' :* If you are unsure of what to do or how to create a page, search for a few articles on the same topic and see what they look like. You can always view the source code in a wiki and learn from what others have done. :* An edit doesn't have to be massive; if you feel you don't want to create whole articles, then just fixing spelling errors and broken links is enough. :* [[Special:UserLogin/signup|Register]] to edit and track your contributions. </div> </div><!-- END contribute box --> </div> {{#description2:Welcome to the {{SITENAME}}, a collaborative wiki resource that is open for anyone to edit!}} __NOTITLE__ __NOTOC__ __NOEDITSECTION__ [[Category:{{SITENAME}}| ]] 8ecf5260663db8a00a7ec1165ac2775e9820a62f File:Website.svg 6 501 630 2024-05-29T17:05:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|CC-BY-NC}} 3a435db13ce21a1f2ea0cf1115126358948cf644 631 630 2024-05-29T17:05:46Z Geekette828 51691 Geekette828 moved page [[File:Website-4946.svg]] to [[File:Website.svg]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|CC-BY-NC}} 3a435db13ce21a1f2ea0cf1115126358948cf644 Template:Schedule 10 502 633 2024-05-29T17:11:57Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Schedule|main}}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Lua templates]]</noinclude>" wikitext text/x-wiki <includeonly>{{#invoke:Schedule|main}}</includeonly><noinclude>{{Documentation}} [[Category:Data templates]] [[Category:Lua templates]]</noinclude> 0e83809c8e1a72ff26dc96a19662d12a0d116467 Module:Schedule 828 503 634 2024-05-29T17:12:32Z Geekette828 51691 Created page with "local p = {} local lib = require('Module:Feature') function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { wrappers = { 'Template:Schedule' } }) args.character = args.character or mw.title.getCurrentTitle().rootText local result = p._main(args) if result == nil then return 'No information about ' .. args.character .. '\'s schedule.' end return frame:extensionTag('tabber', result) end function p._main(args) local out = mw.html.c..." Scribunto text/plain local p = {} local lib = require('Module:Feature') function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { wrappers = { 'Template:Schedule' } }) args.character = args.character or mw.title.getCurrentTitle().rootText local result = p._main(args) if result == nil then return 'No information about ' .. args.character .. '\'s schedule.' end return frame:extensionTag('tabber', result) end function p._main(args) local out = mw.html.create() local tabs = {} local i = '1' while lib.isNotEmpty(args[i .. '_name']) and lib.isNotEmpty(args[i .. '_1_time']) and lib.isNotEmpty(args[i .. '_1_info']) do local _table = mw.html.create('table'):addClass('lkg-table tablemedium') if i == '1' and lib.isEmpty(args['2_name']) then _table:tag('caption'):wikitext(args[i .. '_name']) end --header local tr = _table:tag('tr') tr:tag('th'):wikitext('Time'):addClass('thsmall') tr:tag('th'):wikitext('Activity') local y = '1' while lib.isNotEmpty(args[i .. '_' .. y .. '_time']) and lib.isNotEmpty(args[i .. '_' .. y .. '_info']) do local tr = _table:tag('tr') local _time = lib.split(args[i .. '_' .. y .. '_time'], ':') tr:tag('td'):wikitext(string.format('%02d', _time[1]),':', string.format('%02d', (_time[2] or '00'))) tr:tag('td'):wikitext(args[i .. '_' .. y .. '_info']) y = tostring(tonumber(y)+1) end -- Add to the tabber out:newline() out:wikitext(args[i.. '_name'] .. '=') out:newline() out:wikitext(tostring(_table)) out:newline() out:wikitext('|-|') -- Store the names so we know if any content exists tabs['label' .. i] = args[i .. '_name'] i = tostring(tonumber(i)+1) end if not tabs['label1'] then return nil end return tostring(out) end return p 7b747741a644c117b0c490f3ec4c9c95cf2f2e5b Template:Schedule/doc 10 504 635 2024-05-29T17:15:21Z Geekette828 51691 Created page with "{{tocright}} This template displays the schedules of NPCs as they carry on about their day. '''Related Modules, Templates, or Tables:'''<br> *[[Module:Schedule]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Schedule |character = character name |1_name = condition 1 |1_1_time = start time of schedule 1 for condition 1 |1_1_info = schedule 1 for condition 1 |1_2_time = start time of schedule 2 for condition 1 |1_2_info = schedule 2 for condition 1 |2_name =..." wikitext text/x-wiki {{tocright}} This template displays the schedules of NPCs as they carry on about their day. '''Related Modules, Templates, or Tables:'''<br> *[[Module:Schedule]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Schedule |character = character name |1_name = condition 1 |1_1_time = start time of schedule 1 for condition 1 |1_1_info = schedule 1 for condition 1 |1_2_time = start time of schedule 2 for condition 1 |1_2_info = schedule 2 for condition 1 |2_name = condition 2 |2_1_time = start time of schedule 1 for condition 2 |2_1_info = schedule 1 for condition 2 |2_2_time = start time of schedule 2 for condition 2 |2_2_info = schedule 2 for condition 2 |3_name = condition 3 |3_1_time = start time of schedule 1 for condition 3 |3_1_info = schedule 1 for condition 3 |3_2_time = start time of schedule 2 for condition 3 |3_2_info = schedule 2 for condition 3 }}</syntaxhighlight> ==Examples== ===Lin=== <pre> {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }}</pre> {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} {{clear}} &nbsp;<br> <noinclude>[[Category:Template documentation]]</noinclude> f952364883528ee983a5772868d92cf631e30b67 File:LKG web icon.png 6 505 636 2024-05-29T17:22:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:NPC infobox/Cargo declare 10 506 638 2024-05-29T17:37:52Z Geekette828 51691 Created page with "{{#cargo_declare:_table=NPCs |name=String |romanceable=Boolean |race=String |birthday=String |gender=String |occupation=String }} [[Category:Cargo declaration_templates]]" wikitext text/x-wiki {{#cargo_declare:_table=NPCs |name=String |romanceable=Boolean |race=String |birthday=String |gender=String |occupation=String }} [[Category:Cargo declaration_templates]] 90b7c010260bf621e2fa33d6c6111f580d8b9c4b Template:NPC infobox 10 507 639 2024-05-29T17:38:08Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Relationships=relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthd..." wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Relationships=relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthday|}}} |Gender = {{{gender|}}} |Occupation = {{{occupation|}}} |Relationships = {{icon list|{{{relationships|}}}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=NPCs |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |romanceable={{{romanceable|}}} |race={{{race|}}} |birthday={{{birthday|}}} |gender={{{gender|}}} |occupation={{{occupation|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=NPCs}} [[Category:Infobox templates]]</noinclude> 8212cf65845e1e52fe701623c9e13f7da18d15ab Template:History 10 508 640 2024-05-29T17:39:20Z Geekette828 51691 Created page with "<includeonly>[[Patch Notes#{{{1}}}|{{{1}}}]]: {{{2|}}}</includeonly><noinclude>{{documentation}} [[Category:Data templates]]</noinclude>" wikitext text/x-wiki <includeonly>[[Patch Notes#{{{1}}}|{{{1}}}]]: {{{2|}}}</includeonly><noinclude>{{documentation}} [[Category:Data templates]]</noinclude> 7412c68bb46baa1d48cc3160609c4efac96453e5 Lin 0 509 641 2024-05-29T17:40:18Z Geekette828 51691 Created page with "{{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} Lin is the ships jr. botanist. ==Gifts== ===Gifts for the Player=== ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character =..." wikitext text/x-wiki {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} Lin is the ships jr. botanist. ==Gifts== ===Gifts for the Player=== ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== {{mail|subject= |gift= |collapse= | }} ==Quests== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} c22459b5f0b2346d7e24c611c9e24e971f46a8f3 642 641 2024-05-29T17:40:44Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} Lin is the ships jr. botanist. ==Gifts== ===Gifts for the Player=== ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== {{mail|subject= |gift= |collapse= | }} ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} a0bca3510625c3f4e2139ecf5ac5977c373d23d2 644 642 2024-05-29T17:44:02Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} Lin is the ships jr. botanist. ==Gifts== ===Gifts for the Player=== ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} 0296753108eb6735d13583062eb96cd192814343 Piper 0 510 643 2024-05-29T17:43:40Z Geekette828 51691 Created page with "{{NPC infobox |romanceable = 0 <!-- Character Information --> |race = Human |birthday = Q01-10 |gender = Female |occupation = Retired {{verify}} |quarters = |relationships = }} Piper is... ==Gifts== ===Gifts for the Player=== ==Schedule== Piper has two schedules she follows during a normal week, this schedule is adjusted for holidays and events. {{Schedule |character = Piper |1_name = Regular |1_1_time = 6:00 |1_1_info = In person..." wikitext text/x-wiki {{NPC infobox |romanceable = 0 <!-- Character Information --> |race = Human |birthday = Q01-10 |gender = Female |occupation = Retired {{verify}} |quarters = |relationships = }} Piper is... ==Gifts== ===Gifts for the Player=== ==Schedule== Piper has two schedules she follows during a normal week, this schedule is adjusted for holidays and events. {{Schedule |character = Piper |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters. }} ==Mail== Coming Soon! <!-- Email 1 - email_88 -- unlocks print_deco_fixture_floor_flamingo -- attach deco_fixture_floor_flamingo x3 Email 2 - email_89 -- attach Friendship Cake Recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Piper.png|Neutral Piper portrait angry.png|Angry Piper portrait confused.png|Confused Piper portrait happy.png|Happy Piper portrait sad.png|Sad Piper portrait stressed.png|Stressed Piper sprite.png|Sprite portrait crop Piper.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} b00ebaeeecf9d30199ae756bf820557782772287 Template:Verify 10 511 645 2024-05-29T17:44:43Z Geekette828 51691 Created page with "<includeonly><sub>&nbsp;<span class="explain" title="Additional information or verification needed" span style="color:grey; font-size:90%;">'''[&nbsp;[[:Category:Verify|?]]&nbsp;]'''</span>&nbsp;</sub>[[Category:Verify]]</includeonly><noinclude>{{documentation}}[[Category:Notice templates]]</noinclude>" wikitext text/x-wiki <includeonly><sub>&nbsp;<span class="explain" title="Additional information or verification needed" span style="color:grey; font-size:90%;">'''[&nbsp;[[:Category:Verify|?]]&nbsp;]'''</span>&nbsp;</sub>[[Category:Verify]]</includeonly><noinclude>{{documentation}}[[Category:Notice templates]]</noinclude> ebfaea334101d230ae4ac5f5938acfcdfecbd255 Template:Verify/doc 10 512 646 2024-05-29T17:44:55Z Geekette828 51691 Created page with " ;Tagging articles Please add the <code><nowiki>{{verify}}</nowiki></code> template after any information on the wiki that you're not sure about. This tag will create the following mark: <sub>&nbsp;<span class="explain" title="Additional Information or Verification Needed" span style="color:grey; font-size:90%;">'''[&nbsp;[[:Category:Verify|?]]&nbsp;]'''</span>&nbsp;</sub>. The question mark links to [[:Category:Verify]]. It will also the page in question to this categor..." wikitext text/x-wiki ;Tagging articles Please add the <code><nowiki>{{verify}}</nowiki></code> template after any information on the wiki that you're not sure about. This tag will create the following mark: <sub>&nbsp;<span class="explain" title="Additional Information or Verification Needed" span style="color:grey; font-size:90%;">'''[&nbsp;[[:Category:Verify|?]]&nbsp;]'''</span>&nbsp;</sub>. The question mark links to [[:Category:Verify]]. It will also the page in question to this category. That way, contributors can quickly find where their help is needed. If you see this tag and can verify the information in question or add the information needed, please feel free to make the appropriate changes and remove the tag. ea53cdfc5a26e26d1f13b433d894cd5a94ed60fd 647 646 2024-05-29T17:45:50Z Geekette828 51691 wikitext text/x-wiki ;Tagging articles Please add the <code><nowiki>{{verify}}</nowiki></code> template after any information on the wiki that you're not sure about. This tag will create the following mark: <sub>&nbsp;<span class="explain" title="Additional Information or Verification Needed" span style="color:grey; font-size:90%;">'''[&nbsp;[[:Category:Verify|?]]&nbsp;]'''</span>&nbsp;</sub>. The question mark links to [[:Category:Verify]]. It will also the page in question to this category. That way, contributors can quickly find where their help is needed. If you see this tag and can verify the information in question or add the information needed, please feel free to make the appropriate changes and remove the tag. <noinclude>[[Category:Template documentation]]</noinclude> 9e2dbcdcef8114a919ec439c0f8aac8a30c83243 Category:Verify 14 513 648 2024-05-29T17:46:08Z Geekette828 51691 Created page with "[[Category:Wiki_maintenance]]" wikitext text/x-wiki [[Category:Wiki_maintenance]] 592e49b31492322989d0e1aa97bac01ba4fb37bc Template:Mission involves npc 10 514 649 2024-05-29T17:51:53Z Geekette828 51691 Created page with "Coming soon! <!-- this template will query mission tables to provide a list of missions that involve this NPC-->" wikitext text/x-wiki Coming soon! <!-- this template will query mission tables to provide a list of missions that involve this NPC--> f30fd77527a757f0412561be72f1966610d99a4a Module:Gifted item 828 423 650 603 2024-05-29T18:00:34Z Geekette828 51691 Scribunto text/plain local p = {} local lib = require('Module:Feature') local Icon_list = require('Module:Icon list').buildList local characters = mw.loadData('Module:Gifted item/data') local order = { 'love', 'like', 'neutral', 'dislike'} local categories = mw.html.create() local noDupe = {} local blankReturn = { love = 'No character loves this item.', like = 'No character likes this item.', neutral = 'No character is neutral towards this item.', dislike = 'No character dislikes this item.', } local function adj(preference, cap) if preference == 'neutral' then if cap then return 'Neutral' else return 'neutral' end else if cap then return preference:gsub("^%l", string.upper) .. 'd' else return preference .. 'd' end end end function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true }) return p._main(args) end function p._main(args) local data = p.parseCharacters(args) local result = mw.html.create('table'):addClass('lkg-table tdc1 tdbg1 tdwid1 tablemedium') local tr = result:tag('tr') tr:tag('th'):css{ width = '10%' } tr:tag('th'):wikitext('Characters') -- mw.logObject(data) --build table for _, preference in ipairs(order) do local tr = result:tag('tr') --type if preference == 'neutral' then tr:tag('th'):wikitext('Neutral') else tr:tag('th'):wikitext(adj(preference, true)) end --characters local td = tr:tag('td') if next(data[preference]) == nil then td:tag('i'):wikitext(blankReturn[preference]) else local ul = td:tag('ul') local list = {} local settings = { prefix = ' portrait crop ' } for _, character in ipairs(characters) do if data[preference][character] and (noDupe[character] == nil or noDupe[character] == preference) then table.insert(list, character) if noDupe[character] == nil then noDupe[character] = preference end end end -- adding cols = 6 was breaking mobile views -- if #list >= 1 then settings.cols = 6 end td:node(Icon_list(list, settings)) end end --add categories -- result:node(require('Module:Namespace detect').main{main=categories}) --return table with categories return result end function p.parseCharacters(args) local data = { love = {}, like = {}, neutral = {}, dislike = {}, } for _, preference in ipairs(order) do if lib.isNotEmpty(args[preference]) then if args[preference] == 'universal' then categories:wikitext('[[Category:Item universally ', adj(preference),']]') for _, character in ipairs(characters) do data[preference][character] = true end else for _, character in ipairs(lib.split(args[preference], ';')) do if noDupe[character] == nil then noDupe[character] = preference end if noDupe[character] == preference then data[preference][character] = true end end end end end --return parsed characters return data end return p 4f9db62b80d8ad83443a73aae9f2f10065717d85 652 650 2024-05-29T18:05:39Z Geekette828 51691 Scribunto text/plain local p = {} local lib = require('Module:Feature') local Icon_list = require('Module:Icon list').buildList local characters = mw.loadData('Module:Gifted item/data') local order = { 'love', 'like', 'neutral', 'dislike'} local categories = mw.html.create() local noDupe = {} local blankReturn = { love = 'No character loves this item.', like = 'No character likes this item.', neutral = 'No character is neutral towards this item.', dislike = 'No character dislikes this item.', } local function adj(preference, cap) if preference == 'neutral' then if cap then return 'Neutral' else return 'neutral' end else if cap then return preference:gsub("^%l", string.upper) .. 'd' else return preference .. 'd' end end end function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true }) return p._main(args) end function p._main(args) local data = p.parseCharacters(args) local result = mw.html.create('table'):addClass('lkg-table tdc1 tdbg1 tdwid1 tablemedium') local tr = result:tag('tr') tr:tag('th'):css{ width = '10%' } tr:tag('th'):wikitext('Characters') -- mw.logObject(data) --build table for _, preference in ipairs(order) do local tr = result:tag('tr') --type if preference == 'neutral' then tr:tag('th'):wikitext('Neutral') else tr:tag('th'):wikitext(adj(preference, true)) end --characters local td = tr:tag('td') if next(data[preference]) == nil then td:tag('i'):wikitext(blankReturn[preference]) else local ul = td:tag('ul') local list = {} local settings = { prefix = ' portrait crop ' } for _, character in ipairs(characters) do if data[preference][character] and (noDupe[character] == nil or noDupe[character] == preference) then table.insert(list, character) if noDupe[character] == nil then noDupe[character] = preference end end end -- adding cols = 6 was breaking mobile views -- if #list >= 1 then settings.cols = 6 end td:node(Icon_list(list, settings)) end end --add categories result:node(require('Module:Namespace detect').main{main=categories}) --return table with categories return result end function p.parseCharacters(args) local data = { love = {}, like = {}, neutral = {}, dislike = {}, } for _, preference in ipairs(order) do if lib.isNotEmpty(args[preference]) then if args[preference] == 'universal' then categories:wikitext('[[Category:Item universally ', adj(preference),']]') for _, character in ipairs(characters) do data[preference][character] = true end else for _, character in ipairs(lib.split(args[preference], ';')) do if noDupe[character] == nil then noDupe[character] = preference end if noDupe[character] == preference then data[preference][character] = true end end end end end --return parsed characters return data end return p 9b69e32e571d74b206a401963de40e3dba897551 Module:Namespace detect 828 515 651 2024-05-29T18:05:30Z Geekette828 51691 Created page with "-- <nowiki> --[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace..." Scribunto text/plain -- <nowiki> --[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace aliases are supported, -- -- and namespace names are detected automatically for the local wiki. The -- -- module can also use the corresponding subject namespace value if it is -- -- used on a talk page. Parameter names can be configured for different wikis -- -- by altering the values in the "cfg" table in -- -- Module:Namespace detect/config. -- -- -- -------------------------------------------------------------------------------- --]] local data = mw.title.new( 'Module:Namespace detect/data').exists and mw.loadData('Module:Namespace detect/data') local argKeys = data.argKeys local cfg = data.cfg local mappings = data.mappings local yesno = require('Module:Yesno') local mArguments -- Lazily initialise Module:Arguments local mTableTools -- Lazily initilalise Module:TableTools local ustringLower = mw.ustring.lower local p = {} local function fetchValue(t1, t2) -- Fetches a value from the table t1 for the first key in array t2 where -- a non-nil value of t1 exists. for i, key in ipairs(t2) do local value = t1[key] if value ~= nil then return value end end return nil end local function equalsArrayValue(t, value) -- Returns true if value equals a value in the array t. Otherwise -- returns false. for i, arrayValue in ipairs(t) do if value == arrayValue then return true end end return false end function p.getPageObject(page) -- Get the page object, passing the function through pcall in case of -- errors, e.g. being over the expensive function count limit. if page then local success, pageObject = pcall(mw.title.new, page) if success then return pageObject else return nil end else return mw.title.getCurrentTitle() end end -- Provided for backward compatibility with other modules function p.getParamMappings() return mappings end local function getNamespace(args) -- This function gets the namespace name from the page object. local page = fetchValue(args, argKeys.demopage) if page == '' then page = nil end local demospace = fetchValue(args, argKeys.demospace) if demospace == '' then demospace = nil end local subjectns = fetchValue(args, argKeys.subjectns) local ret if demospace then -- Handle "demospace = main" properly. if equalsArrayValue(argKeys.main, ustringLower(demospace)) then ret = mw.site.namespaces[0].name else ret = demospace end else local pageObject = p.getPageObject(page) if pageObject then if pageObject.isTalkPage then -- Get the subject namespace if the option is set, -- otherwise use "talk". if yesno(subjectns) then ret = mw.site.namespaces[pageObject.namespace].subject.name else ret = 'talk' end else ret = pageObject.nsText end else return nil -- return nil if the page object doesn't exist. end end ret = ret:gsub('_', ' ') return ustringLower(ret) end function p._main(args) -- Check the parameters stored in the mappings table for any matches. local namespace = getNamespace(args) or 'other' -- "other" avoids nil table keys local params = mappings[namespace] or {} local ret = fetchValue(args, params) --[[ -- If there were no matches, return parameters for other namespaces. -- This happens if there was no text specified for the namespace that -- was detected or if the demospace parameter is not a valid -- namespace. Note that the parameter for the detected namespace must be -- completely absent for this to happen, not merely blank. --]] if ret == nil then ret = fetchValue(args, argKeys.other) end return ret end function p.main(frame) mArguments = require('Module:Arguments') local args = mArguments.getArgs(frame, {removeBlanks = false}) local ret = p._main(args) return ret or '' end function p.table(frame) --[[ -- Create a wikitable of all subject namespace parameters, for -- documentation purposes. The talk parameter is optional, in case it -- needs to be excluded in the documentation. --]] -- Load modules and initialise variables. mTableTools = require('Module:TableTools') local namespaces = mw.site.namespaces local cfg = data.cfg local useTalk = type(frame) == 'table' and type(frame.args) == 'table' and yesno(frame.args.talk) -- Whether to use the talk parameter. -- Get the header names. local function checkValue(value, default) if type(value) == 'string' then return value else return default end end local nsHeader = checkValue(cfg.wikitableNamespaceHeader, 'Namespace') local aliasesHeader = checkValue(cfg.wikitableAliasesHeader, 'Aliases') -- Put the namespaces in order. local mappingsOrdered = {} for nsname, params in pairs(mappings) do if useTalk or nsname ~= 'talk' then local nsid = namespaces[nsname].id -- Add 1, as the array must start with 1; nsid 0 would be lost otherwise. nsid = nsid + 1 mappingsOrdered[nsid] = params end end mappingsOrdered = mTableTools.compressSparseArray(mappingsOrdered) -- Build the table. local ret = '{| class="wikitable"' .. '\n|-' .. '\n! ' .. nsHeader .. '\n! ' .. aliasesHeader for i, params in ipairs(mappingsOrdered) do for j, param in ipairs(params) do if j == 1 then ret = ret .. '\n|-' .. '\n| <code>' .. param .. '</code>' .. '\n| ' elseif j == 2 then ret = ret .. '<code>' .. param .. '</code>' else ret = ret .. ', <code>' .. param .. '</code>' end end end ret = ret .. '\n|-' .. '\n|}' return ret end return p 2d9e187100ef7c09defce3fb8625f1a1faf7950a Module:Namespace detect/data 828 516 653 2024-05-29T18:06:22Z Geekette828 51691 Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for [[Module:Namespace detect]] to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = mw.title.new( 'Module:Namespace detect/config').exists an..." Scribunto text/plain -------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for [[Module:Namespace detect]] to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = mw.title.new( 'Module:Namespace detect/config').exists and require('Module:Namespace detect/config') local function addKey(t, key, defaultKey) if key ~= defaultKey then t[#t + 1] = key end end -- Get a table of parameters to query for each default parameter name. -- This allows wikis to customise parameter names in the cfg table while -- ensuring that default parameter names will always work. The cfg table -- values can be added as a string, or as an array of strings. local defaultKeys = { 'main', 'talk', 'other', 'subjectns', 'demospace', 'demopage' } local argKeys = {} for i, defaultKey in ipairs(defaultKeys) do argKeys[defaultKey] = {defaultKey} end for defaultKey, t in pairs(argKeys) do local cfgValue = cfg[defaultKey] local cfgValueType = type(cfgValue) if cfgValueType == 'string' then addKey(t, cfgValue, defaultKey) elseif cfgValueType == 'table' then for i, key in ipairs(cfgValue) do addKey(t, key, defaultKey) end end cfg[defaultKey] = nil -- Free the cfg value as we don't need it any more. end local function getParamMappings() --[[ -- Returns a table of how parameter names map to namespace names. The keys -- are the actual namespace names, in lower case, and the values are the -- possible parameter names for that namespace, also in lower case. The -- table entries are structured like this: -- { -- [''] = {'main'}, -- ['wikipedia'] = {'wikipedia', 'project', 'wp'}, -- ... -- } --]] local mappings = {} local mainNsName = mw.site.subjectNamespaces[0].name mainNsName = mw.ustring.lower(mainNsName) mappings[mainNsName] = mw.clone(argKeys.main) mappings['talk'] = mw.clone(argKeys.talk) for nsid, ns in pairs(mw.site.subjectNamespaces) do if nsid ~= 0 then -- Exclude main namespace. local nsname = mw.ustring.lower(ns.name) local canonicalName = mw.ustring.lower(ns.canonicalName) mappings[nsname] = {nsname} if canonicalName ~= nsname then table.insert(mappings[nsname], canonicalName) end for _, alias in ipairs(ns.aliases) do table.insert(mappings[nsname], mw.ustring.lower(alias)) end end end return mappings end return { argKeys = argKeys, cfg = cfg, mappings = getParamMappings() } d1f81557df82419783c79b5f8199787a881dc85e Module:Namespace detect/config 828 517 654 2024-05-29T18:07:32Z Geekette828 51691 Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --..." Scribunto text/plain -------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- -- -- -- To activate a configuration item, you need to uncomment it. This means -- -- that you need to remove the text "-- " at the start of the line. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. -------------------------------------------------------------------------------- -- Parameter names -- -- These configuration items specify custom parameter names. Values added -- -- here will work in addition to the default English parameter names. -- -- To add one extra name, you can use this format: -- -- -- -- cfg.foo = 'parameter name' -- -- -- -- To add multiple names, you can use this format: -- -- -- -- cfg.foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'} -- -------------------------------------------------------------------------------- ---- This parameter displays content for the main namespace: -- cfg.main = 'main' ---- This parameter displays in talk namespaces: -- cfg.talk = 'talk' ---- This parameter displays content for "other" namespaces (namespaces for which ---- parameters have not been specified): -- cfg.other = 'other' ---- This parameter makes talk pages behave as though they are the corresponding ---- subject namespace. Note that this parameter is used with [[Module:Yesno]]. ---- Edit that module to change the default values of "yes", "no", etc. -- cfg.subjectns = 'subjectns' ---- This parameter sets a demonstration namespace: -- cfg.demospace = 'demospace' ---- This parameter sets a specific page to compare: cfg.demopage = 'page' -------------------------------------------------------------------------------- -- Table configuration -- -- These configuration items allow customisation of the "table" function, -- -- used to generate a table of possible parameters in the module -- -- documentation. -- -------------------------------------------------------------------------------- ---- The header for the namespace column in the wikitable containing the list of ---- possible subject-space parameters. -- cfg.wikitableNamespaceHeader = 'Namespace' ---- The header for the wikitable containing the list of possible subject-space ---- parameters. -- cfg.wikitableAliasesHeader = 'Aliases' -------------------------------------------------------------------------------- -- End of configuration data -- -------------------------------------------------------------------------------- return cfg -- Don't edit this line. 0e4ff08d13c4b664d66b32c232deb129b77c1a56 Module:Yesno 828 518 655 2024-05-29T18:08:01Z Geekette828 51691 Created page with "-- <nowiki> --- Yesno module for processing of boolean-like wikitext input. -- -- It works similarly to the [[wikipedia:Template:Yesno|Yesno Wikipedia -- template]]. This module is a consistent Lua interface for wikitext -- input from templates. -- -- Wikitext markup used by MediaWiki templates only permit -- string parameters like `"0"`, `"yes"`, `"no"` etc. As Lua -- has a boolean primitive type, Yesno converts this -- wikitext into boolean output for Lua t..." Scribunto text/plain -- <nowiki> --- Yesno module for processing of boolean-like wikitext input. -- -- It works similarly to the [[wikipedia:Template:Yesno|Yesno Wikipedia -- template]]. This module is a consistent Lua interface for wikitext -- input from templates. -- -- Wikitext markup used by MediaWiki templates only permit -- string parameters like `"0"`, `"yes"`, `"no"` etc. As Lua -- has a boolean primitive type, Yesno converts this -- wikitext into boolean output for Lua to process. -- -- @script yesno -- @release stable -- @author [[User:Dessamator|Dessamator]] -- @attribution [[wikipedia:User:ATDT|ATDT]] -- @attribution [[wikipedia:User:Mr. Stradivarius|Mr. Stradivarius]] -- @attribution [[wikipedia:Special:PageHistory/Module:Yesno|Other Wikipedia contributors]] -- @see [[wikipedia:Module:Yesno|Original module on -- Wikipedia]] -- @see [[Module:Yesno/testcases|Test cases for this -- module]] -- @param {?boolean|string} value Wikitext boolean-style -- or Lua boolean input. -- * Truthy wikitext input (`'yes'`, `'y'`, `'1'`, -- `'t'` or `'on'`) produces `true` as output. -- * The string representations of Lua's true -- boolean value (`'true'`) also produces `true`. -- * Falsy wikitext input (`'no'`, `'n'`, `'0'`, -- `'f'` or `'off'`) produces `false` as output. -- * The string representation of Lua's false -- boolean value (`'false'`) also produces `false`. -- * Localised text meaning `'yes'` or `'no'` also -- evaluate to `true` or `false` respectively. -- @param[opt] {?boolean|string} default Output to return if -- the Yesno `value` input is unrecognised. -- @return {?boolean} Boolean output corresponding to -- `val`: -- * The strings documented above produce a -- boolean value. -- * A `nil` value produces an output of `nil`. -- As this is falsy, additional logic may be needed -- to treat missing template parameters as truthy. -- * Unrecognised values return the `default` -- parameter. Blank strings are a key example -- of Yesno's unrecognised values and can evaluate -- to `true` if there is a default value. local lower = mw.ustring.lower local msg = mw.message.new local yes = lower(msg('htmlform-yes'):plain()) local no = lower(msg('htmlform-no'):plain()) local en_yes = lower(msg('htmlform-yes'):inLanguage('en'):plain()) local en_no = lower(msg('htmlform-no'):inLanguage('en'):plain()) return function(value, default) value = type(value) == 'string' and lower(value) or value if value == nil then return nil elseif value == true or value == yes or value == en_yes or value == 'y' or value == 'true' or value == 't' or value == 'on' or value == 'enable' or tonumber(value) == 1 then return true elseif value == false or value == no or value == en_no or value == 'n' or value == 'false' or value == 'f' or value == 'off' or value == 'disable' or tonumber(value) == 0 then return false else return default end end -- </nowiki> e342cfbb2046573b83245c0a26dde4b62f8b783c Category:Item universally neutral 14 519 656 2024-05-29T18:08:53Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Category:Items 14 520 657 2024-05-29T18:10:51Z Geekette828 51691 Created page with "[[Category:{{SITENAME}}]]" wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 Category:Crops 14 521 658 2024-05-29T18:11:10Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Category:Consumables 14 522 659 2024-05-29T18:11:13Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Template:Seed infobox 10 439 660 543 2024-05-29T18:11:51Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Growth Information, Merchant Information |Item Information=Item Type, Planet, Produces |Growth Information = Grow Days, Max Harvest, Avg Yield |Merchant Information=Sell,Buy |Item Type=Seed |Planet = {{icon|{{{planet|}}}}} |Produces= {{icon list|{{{produces|}}}}} |Grow Days = {{{growth|}}} |Max Harvest = {{{maxHarvest|}}} |Avg Yield= {{{cropYield|}}} |Sell = {{{sellValue|}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |[[Category:Seeds]]<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType=Seed }}<!-- Setting the cargo store for restoration amounts--> {{#cargo_store:_table=Seeds |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |planet={{{planet|}}} |growth={{{growth|}}} |maxHarvest={{{maxHarvest|}}} |cropYield={{{cropYield|}}} }}<!-- Defining the name variable, so it can be sent to the downstream templates -->{{#vardefine:name|{{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }}}}<!-- Sending the "produces" to the produces table template, where it will be parsed out and stored in the Produces table. -->{{#arraymaptemplate:{{{produces|}}}|Produces table|;|}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Seeds table/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 006281ea7c6c8866d4a0fbb7b7c326d1b995ca70 Category:Seeds 14 523 661 2024-05-29T18:12:03Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Template:NPC infobox 10 507 662 639 2024-05-29T18:13:38Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Relationships=relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes [[Category:Romanceable NPC]] |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthday|}}} |Gender = {{{gender|}}} |Occupation = {{{occupation|}}} |Relationships = {{icon list|{{{relationships|}}}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |[[Category:Characters]]<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=NPCs |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |romanceable={{{romanceable|}}} |race={{{race|}}} |birthday={{{birthday|}}} |gender={{{gender|}}} |occupation={{{occupation|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=NPCs}} [[Category:Infobox templates]]</noinclude> c2fc0d9702608f0040c4f9551108d52343a4bba0 678 662 2024-05-29T18:37:57Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Relationships=relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes [[Category:Romanceable NPC]] |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthday|}}} |Gender = {{{gender|}}} |Occupation = {{{occupation|}}} |Relationships = {{icon list|{{{relationships|}}}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |[[Category:Characters]]<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=NPCs |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |romanceable={{{romanceable|}}} |race={{{race|}}} |birthday={{{birthday|}}} |gender={{{gender|}}} |occupation={{{occupation|}}} |location={{{location|}}} |quarters={{{quarters|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=NPCs}} [[Category:Infobox templates]]</noinclude> f01387a845273269b94a69295689c520051174e0 698 678 2024-05-29T19:02:37Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Relationships=relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthday|}}} |Gender = {{{gender|}}} |Occupation = {{{occupation|}}} |Relationships = {{icon list|{{{relationships|}}}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |[[Category:Characters]] {{#switch:{{{romanceable|}}} |1=[[Category:Romanceable NPC]]}}<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=NPCs |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |romanceable={{{romanceable|}}} |race={{{race|}}} |birthday={{{birthday|}}} |gender={{{gender|}}} |occupation={{{occupation|}}} |location={{{location|}}} |quarters={{{quarters|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=NPCs}} [[Category:Infobox templates]]</noinclude> 954b80f22fafda4e83a3a4929117089768bb091e 699 698 2024-05-29T19:04:35Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Personal Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Personal Relationships=Relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthday|}}} |Gender = {{{gender|}}} |Occupation = {{{occupation|}}} |Relationships = {{icon list|{{{relationships|}}}}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |[[Category:Characters]] {{#switch:{{{romanceable|}}} |1=[[Category:Romanceable NPC]]}}<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=NPCs |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |romanceable={{{romanceable|}}} |race={{{race|}}} |birthday={{{birthday|}}} |gender={{{gender|}}} |occupation={{{occupation|}}} |location={{{location|}}} |quarters={{{quarters|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=NPCs}} [[Category:Infobox templates]]</noinclude> 2e40466c70ee7991f319ebc26e059f581b28bb7a 700 699 2024-05-29T19:05:08Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = npc | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Personal Relationships |General Information=Romanceable, Race, Birthday, Gender, Occupation |Personal Relationships=Relationships |Romanceable={{#switch:{{{romanceable|}}} |1=Yes |0|#default=No}} |Race = {{{race|}}} |Birthday = {{{birthday|}}} |Gender = {{{gender|}}} |Occupation = {{{occupation|}}} |Relationships = {{#if:{{{relationships|}}}|{{icon list|{{{relationships|}}}}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |[[Category:Characters]] {{#switch:{{{romanceable|}}} |1=[[Category:Romanceable NPC]]}}<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=NPCs |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |romanceable={{{romanceable|}}} |race={{{race|}}} |birthday={{{birthday|}}} |gender={{{gender|}}} |occupation={{{occupation|}}} |location={{{location|}}} |quarters={{{quarters|}}} }}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=NPCs}} [[Category:Infobox templates]]</noinclude> 3edab1c9377032813f825ea56667e42a94c69f76 Category:Item universally disliked 14 524 663 2024-05-29T18:14:24Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Template:NPC gift preferences 10 525 664 2024-05-29T18:18:41Z Geekette828 51691 Created page with "<includeonly>{|class="lkg-table tablemedium" style="text-align:center;" |- !style="width:10%;"| !style="font-size:110%;"|Items |- valign=center !style="text-align:center;"|Love |style="text-align:left;"|{{#arraydefine:love_list|{{{love|}}}|,}}{{#arraysort:love_list|asc}}{{cols|2|{{#arrayprint:love_list||@ |{{icon|br=true|@}}}}{{{loveGroups|}}}}} |- valign=center !style="text-align:center;"|Like |style="text-align:left;"|{{#arraydefine:like_list|{{{like|}}}|,}}{{#arraysor..." wikitext text/x-wiki <includeonly>{|class="lkg-table tablemedium" style="text-align:center;" |- !style="width:10%;"| !style="font-size:110%;"|Items |- valign=center !style="text-align:center;"|Love |style="text-align:left;"|{{#arraydefine:love_list|{{{love|}}}|,}}{{#arraysort:love_list|asc}}{{cols|2|{{#arrayprint:love_list||@ |{{icon|br=true|@}}}}{{{loveGroups|}}}}} |- valign=center !style="text-align:center;"|Like |style="text-align:left;"|{{#arraydefine:like_list|{{{like|}}}|,}}{{#arraysort:like_list|asc}}{{cols|2|{{#arrayprint:like_list||@ |{{icon|br=true|@}}}}{{{likeGroups|}}}}} |- valign=center !style="text-align:center;" rowspan=2|Neutral |Any gift that has not been mentioned as a love, like, or dislike. |- valign=center !style="text-align:center;"|Dislike |style="text-align:left;"|{{#arraydefine:dislike_list|{{{dislike|}}}|,}}{{#arraysort:dislike_list|asce}}{{cols|2|{{#arrayprint:dislike_list||@ |{{icon|br=true|@}}}}{{{dislikeGroups|}}}}} |}</includeonly><noinclude>{{Documentation}} [[Category:Design templates]] [[Category:Gifting templates]]</noinclude> 91cde5d4e0cee4ed9eebc8be253c34bb96faf033 665 664 2024-05-29T18:19:03Z Geekette828 51691 wikitext text/x-wiki <includeonly>{|class="lkg-table tablemedium" style="text-align:center;" |- !style="width:10%;"| !style="font-size:110%;"|Items |- valign=center !style="text-align:center;"|Love |style="text-align:left;"|{{#arraydefine:love_list|{{{love|}}}|,}}{{#arraysort:love_list|asc}}{{cols|2|{{#arrayprint:love_list||@ |{{icon|br=true|@}}}}{{{loveGroups|}}}}} |- valign=center !style="text-align:center;"|Like |style="text-align:left;"|{{#arraydefine:like_list|{{{like|}}}|,}}{{#arraysort:like_list|asc}}{{cols|2|{{#arrayprint:like_list||@ |{{icon|br=true|@}}}}{{{likeGroups|}}}}} |- valign=center !style="text-align:center;"|Neutral |Any gift that has not been mentioned as a love, like, or dislike. |- valign=center !style="text-align:center;"|Dislike |style="text-align:left;"|{{#arraydefine:dislike_list|{{{dislike|}}}|,}}{{#arraysort:dislike_list|asce}}{{cols|2|{{#arrayprint:dislike_list||@ |{{icon|br=true|@}}}}{{{dislikeGroups|}}}}} |}</includeonly><noinclude>{{Documentation}} [[Category:Design templates]] [[Category:Gifting templates]]</noinclude> 5baba1fec2fcbf53216c730b341e606523934266 680 665 2024-05-29T18:39:40Z Geekette828 51691 wikitext text/x-wiki <includeonly>{|class="lkg-table tablemedium" style="text-align:center;" |- !style="width:10%;"| !style="font-size:110%;"|Items |- valign=center !style="text-align:center;"|Love |style="text-align:left;"|{{#arraydefine:love_list|{{{love|}}}|,}}{{#arraysort:love_list|asc}}{{cols|2|{{#arrayprint:love_list||@ |{{icon|br=true|@}}}}{{{loveGroups|}}}}} |- valign=center !style="text-align:center;"|Like |style="text-align:left;"|{{#arraydefine:like_list|{{{like|}}}|,}}{{#arraysort:like_list|asc}}{{cols|2|{{#arrayprint:like_list||@ |{{icon|br=true|@}}}}{{{likeGroups|}}}}} |- valign=center !style="text-align:center;"|Neutral |style="text-align:left;"|{{#arraydefine:neutral_list|{{{neutral|}}}|,}}{{#arraysort:neutral_list|asc}}{{cols|2|{{#arrayprint:neutral_list||@ |{{icon|br=true|@}}}}{{{neutralGroups|}}}}} |- valign=center !style="text-align:center;"|Dislike |style="text-align:left;"|{{#arraydefine:dislike_list|{{{dislike|}}}|,}}{{#arraysort:dislike_list|asce}}{{cols|2|{{#arrayprint:dislike_list||@ |{{icon|br=true|@}}}}{{{dislikeGroups|}}}}} |}</includeonly><noinclude>{{Documentation}} [[Category:Design templates]] [[Category:Gifting templates]]</noinclude> 11cdf3ce2c320f3c20eb2055994674b4ccd96b04 Template:Cols 10 526 666 2024-05-29T18:19:14Z Geekette828 51691 Created page with "<includeonly><div style="-moz-column-count: {{{1}}}; -webkit-column-count: {{{1}}}; column-count: {{{1}}};">{{{2}}}</div></includeonly><noinclude> {{documentation}}</noinclude>" wikitext text/x-wiki <includeonly><div style="-moz-column-count: {{{1}}}; -webkit-column-count: {{{1}}}; column-count: {{{1}}};">{{{2}}}</div></includeonly><noinclude> {{documentation}}</noinclude> 172631609dd9184d2627af2ef7399a806efa35e1 Category:Item universally loved 14 527 667 2024-05-29T18:19:36Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Category:Item universally liked 14 528 668 2024-05-29T18:19:38Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Lin 0 509 669 644 2024-05-29T18:21:15Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} Lin is the ships jr. botanist. ==Gifts== {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} a4277b5c4d941bcee05bad769cb6411d350be8b8 676 669 2024-05-29T18:29:48Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} Lin is the ships jr. botanist. ==Gifts== {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} b4f5156c08d7f8a985567daa31cc5673e11181b6 681 676 2024-05-29T18:43:01Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} Lin is the ships jr. botanist. ==Gifts== {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Soil Sample, Circuit Board |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]]<br>[[:Category:Fertilizers|Fertilizers]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} a6d58671025d50f22d4af800c2eeca2b862632ae 694 681 2024-05-29T18:58:14Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} Lin is the ships jr. botanist. .... information on Lin's personality, quirks, various information gleaned from conversations should go here. Information on what Lin looks like should go here. ==Gifts== {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Soil Sample, Circuit Board |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]]<br>[[:Category:Fertilizers|Fertilizers]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} 208348390e18640d4550f8dbbd265825fd4eefe7 695 694 2024-05-29T18:59:13Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} Lin is the ships jr. botanist. .... information on Lin's personality, quirks, various information gleaned from conversations should go here. Information on what Lin looks like should go here. ==Gifts== {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Soil Sample, Circuit Board |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]]<br>[[:Category:Fertilizers|Fertilizers]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} 82a80720432a39609c144a4fac00dd7fa4179fef Template:Gifts for the player 10 529 670 2024-05-29T18:22:02Z Geekette828 51691 Created page with "<includeonly>{{#arraydefine:items|{{{1|}}}|,}}{{#arraysort:items|asce}} {| class="lkg-table tablesmall" |- ! Gift !style="width:40%;"| Received From {{#arrayprint:items|<br />|@@@@|<nowiki /> {{!}}- {{!}}{{icon|{{#explode: {{#explode:@@@@|:|0}} |*|0}}|x={{#explode: {{#explode:@@@@|:|0}} |*|1}}}} {{!}}style="text-align:left;"{{!}}{{#if:{{#explode:@@@@|:|1|2}}|{{#explode:@@@@|:|1|2}}|None}}}} |}</includeonly><noinclude>{{Documentation}}[[Category:Gifting templates]]Cate..." wikitext text/x-wiki <includeonly>{{#arraydefine:items|{{{1|}}}|,}}{{#arraysort:items|asce}} {| class="lkg-table tablesmall" |- ! Gift !style="width:40%;"| Received From {{#arrayprint:items|<br />|@@@@|<nowiki /> {{!}}- {{!}}{{icon|{{#explode: {{#explode:@@@@|:|0}} |*|0}}|x={{#explode: {{#explode:@@@@|:|0}} |*|1}}}} {{!}}style="text-align:left;"{{!}}{{#if:{{#explode:@@@@|:|1|2}}|{{#explode:@@@@|:|1|2}}|None}}}} |}</includeonly><noinclude>{{Documentation}}[[Category:Gifting templates]][[Category:Design templates]]</noinclude> 3238cee50288a386b8b0dc69ed05d768129a1afb Template:Gifts for the player/doc 10 530 671 2024-05-29T18:25:13Z Geekette828 51691 Created page with "This template displays gifts that the NPC gives the player. ==Syntax== <syntaxhighlight lang="wikitext"> {{Gifts for the player|Item Name*Amount:How Its Obtained,Item Name2:Obtained }}</syntaxhighlight> List out the items that the NPC gives the player, in a comma delimited list. After the name of the item, put a colon and how the items is obtained from the NPC. Most common "obtained" ways are: Mail, Dialogue, Event, Quest." wikitext text/x-wiki This template displays gifts that the NPC gives the player. ==Syntax== <syntaxhighlight lang="wikitext"> {{Gifts for the player|Item Name*Amount:How Its Obtained,Item Name2:Obtained }}</syntaxhighlight> List out the items that the NPC gives the player, in a comma delimited list. After the name of the item, put a colon and how the items is obtained from the NPC. Most common "obtained" ways are: Mail, Dialogue, Event, Quest. 32b1760525e66a0ea2356eb2db1d482ce53ff34e Template:NPC infobox/doc 10 531 672 2024-05-29T18:28:28Z Geekette828 51691 Created page with " Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is app..." wikitext text/x-wiki Infobox for items in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Item infobox/Cargo declare]] - Declares the [[Special:CargoTables/Items|items cargo table]] *[[Template:Items restoration]] - Declares and stores information for the [[Special:CargoTables/Items_restoration|items restoration cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |romanceable = 1 for yes, 0 for no (Boolean) <!-- Character Information --> |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |quarters = Name of their quarters. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} <pre> {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> 7f805bee94e63a16d08ebaabd3ea2d8b3b92a745 673 672 2024-05-29T18:28:58Z Geekette828 51691 wikitext text/x-wiki Infobox for NPCs in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:NPC infobox/Cargo declare]] - Declares the [[Special:CargoTables/NPCs|NPCs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |romanceable = 1 for yes, 0 for no (Boolean) <!-- Character Information --> |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |quarters = Name of their quarters. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} <pre> {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> 22766a0598804e59f0058679c32a1c671e29dab9 674 673 2024-05-29T18:29:15Z Geekette828 51691 /* Syntax */ wikitext text/x-wiki Infobox for NPCs in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:NPC infobox/Cargo declare]] - Declares the [[Special:CargoTables/NPCs|NPCs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) <!-- Character Information --> |romanceable = 1 for yes, 0 for no (Boolean) |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |quarters = Name of their quarters. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} <pre> {{NPC infobox |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> deef51a2ca4aac4e100456e30d474eef77cf7a86 675 674 2024-05-29T18:29:27Z Geekette828 51691 /* Examples */ wikitext text/x-wiki Infobox for NPCs in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:NPC infobox/Cargo declare]] - Declares the [[Special:CargoTables/NPCs|NPCs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) <!-- Character Information --> |romanceable = 1 for yes, 0 for no (Boolean) |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |quarters = Name of their quarters. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} <pre> {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> b7a630e4464fef5ae1299cde4394241f979fbafd 679 675 2024-05-29T18:38:07Z Geekette828 51691 wikitext text/x-wiki Infobox for NPCs in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:NPC infobox/Cargo declare]] - Declares the [[Special:CargoTables/NPCs|NPCs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) <!-- Character Information --> |romanceable = 1 for yes, 0 for no (Boolean) |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. (plain text string) |location = Ship or Name of Planet (plain text string) |quarters = Name of their quarters. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} <pre> {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |quarters = |relationships = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> 63a02091eee708e72fd2f7f9038afa35d78cfb16 701 679 2024-05-29T19:05:42Z Geekette828 51691 /* Examples */ wikitext text/x-wiki Infobox for NPCs in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:NPC infobox/Cargo declare]] - Declares the [[Special:CargoTables/NPCs|NPCs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) <!-- Character Information --> |romanceable = 1 for yes, 0 for no (Boolean) |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. (plain text string) |location = Ship or Name of Planet (plain text string) |quarters = Name of their quarters. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} <pre> {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> 758173fdb44ebe3c231f7e610b559f4206c772fc Template:NPC infobox/Cargo declare 10 506 677 638 2024-05-29T18:34:32Z Geekette828 51691 wikitext text/x-wiki {{#cargo_declare:_table=NPCs |name=String |romanceable=Boolean |race=String |birthday=String |gender=String |occupation=String |location=String |quarters=String }} [[Category:Cargo declaration_templates]] 0d9d8856a8faaff52ea0d6aa0373444852217a84 Template:Item infobox 10 209 682 611 2024-05-29T18:49:36Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Energy Gain = {{#if: {{{energyGain|}}} |{{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- If energy gain is false-->}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{#if: {{{healthGain|}}} |{{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain health from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" health gain -->}} |<!-- If health gain is false-->}} |Sell = {{{sellValue|}}}{{credits}}{{#if:{{{sellSuper|}}}|<br>{{icon|super item|notext=true|size=20}}{{{sellSuper|}}}{{credits}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting classification categories based on itemType-->{{#switch:{{lc:{{{itemType|}}}}} |fertilizer = [[Category:Fertilizers]] |fuel = [[Category:Fuels]] |tool = [[Category:Tools]]<!-- End category setting End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> 9f23fa364db7551a1fe501ec6c9edf863c8d29dd 688 682 2024-05-29T18:53:24Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Energy Gain = {{#if: {{{energyGain|}}} |{{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- If energy gain is false-->}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{#if: {{{healthGain|}}} |{{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain health from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" health gain -->}} |<!-- If health gain is false-->}} |Sell = {{{sellValue|}}}{{credits}}{{#if:{{{sellSuper|}}}|<br>{{icon|super item|notext=true|size=20}}{{{sellSuper|}}}{{credits}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting classification categories based on itemType-->{{#switch:{{lc:{{{itemType|}}}}} |fertilizer = [[Category:Fertilizers]] |fuel = [[Category:Fuels]] |tool = [[Category:Tools]]<!-- End category setting-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> aa65c4644d2e7b1d07b8b685896efcc830ae02ca Category:Fuels 14 532 683 2024-05-29T18:49:54Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Category:Fertilizers 14 533 684 2024-05-29T18:50:13Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Category:Tools 14 534 685 2024-05-29T18:50:22Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Template:Recipe/header 10 196 686 213 2024-05-29T18:51:51Z Geekette828 51691 wikitext text/x-wiki <includeonly>{| class="lkg-table tablesmall !Product !!Ingredients !!Machine !!Time</includeonly><noinclude>Part of the {{T|Recipe}} group of templates. [[Category:Runner templates]]</noinclude> 2b697b06ff968895448cd5155d751854fa2f2930 Template:Recipe 10 195 687 500 2024-05-29T18:52:44Z Geekette828 51691 wikitext text/x-wiki <includeonly> |- |{{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }}{{#if: {{{yield|}}} |<!-- If yield is true-->&nbsp;<small>({{{yield|}}})</small> |<!-- If yield is false-->}} |{{icon list|{{{ingredients|}}}}} |{{icon|{{#titleparts:{{{machine|}}}}}|notext=true|size=50}} |{{{time|}}} <!-- Setting if equals to namespace 0 store the data -->{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store-->{{#cargo_store:_table=Recipes |product={{#if: {{{product|}}} | {{#titleparts:{{{product|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |yield={{{yield|}}} |machine={{#titleparts:{{{machine|}}}}} |time={{{time|}}} |recipeSource={{{recipeSource|}}} |recipeId={{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}} }}<!-- Defining the recipieID variable, so it can be sent to the Recipe ingredients template -->{{#vardefine:recipeId|{{#if: {{{id|}}}|<!-- If ID is true-->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_{{{id|}}} |<!-- If ID is false -->{{#if: {{{product|}}} | {{{product|}}} | {{PAGENAME}} }}_1}}<!-- end vardefine -->}}<!-- Sending the ingredients and quantity to the Recipe ingredients template, where it will be parsed out and stored in the Recipe_ingredients table. -->{{#arraymaptemplate:{{{ingredients|}}}|Recipe ingredients|;|}}<!-- End if equals-->}}</includeonly><noinclude> {{#cargo_attach:_table=Recipes}}{{documentation}} [[Category:Cargo store templates]] [[Category:Data templates]] </noinclude> 68e722152b4a419ab7c60b05530accb3060af6c9 Dark matter fuel 0 385 689 609 2024-05-29T18:54:43Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} A summary about what dark matter fuel is, and what its used for should go here! ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark matter fuel |machine=Advanced dark matter refiner |ingredients=Dark matter*10 |time=6hr |id=2}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Quest Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== 16f81cb7cdc1231c5538efd786c53106451e824b Dark matter 0 491 690 610 2024-05-29T18:54:56Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=1 |sellSuper= |itemType= }} A summary about what dark matter is, and what its used for should go here! ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== ===Quest Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Questing=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== b2927a4138042e82d607b6f7376122046f00c6e1 Template:Item as ingredient 10 418 691 555 2024-05-29T18:55:30Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Recipes=r, Recipe_ingredients=ri1, Recipe_ingredients=ri2, Items=it |join= r.recipeId=ri1.recipeId, ri1.recipeId=ri2.recipeId, r.product=it.name |fields= r.product, r.machine, r.time, r.yield, r.recipesource, r.recipeId, it.sellValue, GROUP_CONCAT( ri2.ingredient, "*", ri2.quantity)=Ingredients |where = ri1.ingredient="{{{1|{{PAGENAME}}}}}" {{#if:{{{2|}}} |<!-- if "or" is true-->OR ri1.ingredient="{{{2|}}}" |<!-- if "or" is false -->}} |groupBy= ri1.recipeId |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Item as ingredient/phantom |intro= {{{!}} class="lkg-table tdc3 tdc4 tdc5" !Product ! style="max-width:15%{{!}} Ingredients !Workbench !Time !Sell Price |outro= {{!}}} |delimiter= |default= No crafting recipe needs '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}'''{{#if: {{{2|}}}|&nbsp;or '''{{ucfirst:{{{2|}}}}}'''|}} as an ingredient. }}</includeonly><noinclude>{{Documentation}} [[Category:Cargo query templates]] [[Category:Data templates]]</noinclude> a3da2f6ff90d082ba52ae3d47b133a242ebe409b 692 691 2024-05-29T18:56:21Z Geekette828 51691 wikitext text/x-wiki <includeonly> {{#invoke:CargoQuery|main |tables= Recipes=r, Recipe_ingredients=ri1, Recipe_ingredients=ri2, Items=it |join= r.recipeId=ri1.recipeId, ri1.recipeId=ri2.recipeId, r.product=it.name |fields= r.product, r.machine, r.time, r.yield, r.recipesource, r.recipeId, it.sellValue, GROUP_CONCAT( ri2.ingredient, "*", ri2.quantity)=Ingredients |where = ri1.ingredient="{{{1|{{PAGENAME}}}}}" {{#if:{{{2|}}} |<!-- if "or" is true-->OR ri1.ingredient="{{{2|}}}" |<!-- if "or" is false -->}} |groupBy= ri1.recipeId |having= <!-- corresponds to having --> |orderBy= <!-- corresponds to order by --> |limit= <!-- corresponds to limit --> |template= Item as ingredient/phantom |intro= {{{!}} class="lkg-table tablemedium tdc3 tdc4 tdc5" !Product ! style="max-width:15%{{!}} Ingredients !Workbench !Time !Sell Price |outro= {{!}}} |delimiter= |default= No crafting recipe needs '''{{ucfirst:{{{1|{{PAGENAME}}}}}}}'''{{#if: {{{2|}}}|&nbsp;or '''{{ucfirst:{{{2|}}}}}'''|}} as an ingredient. }}</includeonly><noinclude>{{Documentation}} [[Category:Cargo query templates]] [[Category:Data templates]]</noinclude> 4e051ae97ef609cfab868177d416f74bf8eaf500 Piper 0 510 693 643 2024-05-29T18:58:09Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q01-10 |gender = Female |occupation = Retired {{verify}} |relationships = |location = Ship |quarters = }} '''Piper''' is .... information on Piper's personality, quirks, various information gleaned from conversations should go here. Information on what Piper looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically called in this list are overrides to those universal gifts. {{NPC gift preferences |love = Earl Grey Tea,Cucumber,Cherry Tart,Fruit Jam,Fruit Wine,Ruby,Viridis Post Card |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Conch Shell |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Chips, Bigfoot Photo |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Recycled Parts, Cosmic Jelly, Carbon Nano-tubes |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Piper has two schedules she follows during a normal week, this schedule is adjusted for holidays and events. {{Schedule |character = Piper |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters. }} ==Mail== Coming Soon! <!-- Email 1 - email_88 -- unlocks print_deco_fixture_floor_flamingo -- attach deco_fixture_floor_flamingo x3 Email 2 - email_89 -- attach Friendship Cake Recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Piper.png|Neutral Piper portrait angry.png|Angry Piper portrait confused.png|Confused Piper portrait happy.png|Happy Piper portrait sad.png|Sad Piper portrait stressed.png|Stressed Piper sprite.png|Sprite portrait crop Piper.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} 2889bed913945860249da6b35d299bb8e9fddc3f Category:Characters 14 535 696 2024-05-29T19:01:43Z Geekette828 51691 Created page with "Category:{{SITENAME}}" wikitext text/x-wiki [[Category:{{SITENAME}} 94ea76e6f0b4602a31dd9209e5e4eab067cfc601 Category:Romanceable NPC 14 536 697 2024-05-29T19:01:57Z Geekette828 51691 Created page with "[[Category:Characters]]" wikitext text/x-wiki [[Category:Characters]] 52f882e537c3212533581f6c826cf9bfa42de14e Little-Known Galaxy Wiki 0 199 702 637 2024-05-29T19:09:05Z Geekette828 51691 wikitext text/x-wiki <div id="mp-layout1-container"> <div class="mp-box" id="mp-box-welcome"><!-- BEGIN Welcome box --> <div id="mp-welcome"> <div style="font-size: 35px;">Welcome to {{SITENAME}}!</div> [[File:Site-logo.png|center|frameless]] a comprehensive reference written and maintained by the players.<br> We are currently maintaining [[Special:Statistics|{{NUMBEROFARTICLES}} articles]]. Please feel free to contribute by creating new articles or expanding existing ones. <!-- --><div class="" style="text-align:center;"><!-- --><p><strong>Official links:</strong><br> <span style="display: inline-block;"><!-- -->[[File:LKG_web_icon.png|40px|link=https://www.littleknowngalaxy.com/|Website]]&nbsp;<!-- -->[[File:Discord.svg|40px|link=https://discord.com/invite/gVxUqge9Xf|Discord]]&nbsp;<!-- -->[[File:Twitter.svg|40px|link=https://twitter.com/LittleKnownGlxy|Twitter]]&nbsp;<!-- [[File:Reddit.svg|40px|link=https://www.reddit.com/r/LittleKnownGalaxy|Reddit]]&nbsp;<!-- -->[[File:YouTube.svg|40px|link=https://www.youtube.com/@carbonkay|YouTube]]&nbsp;<!-- [[File:Facebook.svg|40px|link=https://www.facebook.com/profile.php?id=xxxxxx|Facebook]]&nbsp;<!-- -->[[File:Instagram.svg|40px|link=https://www.instagram.com/carbonandkay/|Instagram]]&nbsp;<!-- [[File:Tumblr.svg|40px|link=https://lkg.tumblr.com/|Tumblr]]&nbsp;<!-- [[File:Pinterest.svg|40px|link=https://www.pinterest.com/lkg/|Pinterest]]&nbsp;<!-- [[File:Patreon.svg|40px|link=https://www.patreon.com/lkg|Patreon]]&nbsp;<!-- -->[[File:Steam.svg|40px|link=https://store.steampowered.com/app/2521600/LittleKnown_Galaxy/|Steam]]&nbsp;<!-- --><!--[[File:Nintendo Switch.svg|40px|link=|Switch]]&nbsp;--><!-- --></span></p><!-- --></div> </div> <div id="mp-banner"></div> </div><!-- END Welcome box --> <div class="mp-box" id="mp-box-about"><!-- BEGIN about box --> ==About Little-Known Galaxy== <div class="mp-body"> Join Space Alliance as a new captain-in-training and work with your crew to solve the mysteries of an ancient relic found on the Grey Planet. Little-Known Galaxy is a cozy single-player RPG space adventure full of friendly characters, exploration, crafting, and farming. Unlock the secret of a mysterious relic and complete your Star Alliance mission. What mysteries will it uncover? What kind of adventure lies ahead? And who will you meet along the way? It’s up to you now Captain. Remember to support your crew, follow your heart, and always take care of each other. </div> </div><!-- END about box --> <div class="mp-box centered-content" id="mp-box-featured"><!-- BEGIN featured box --> ==WIP== <div class="mp-body"> <div class="mp-links columns-3 stretch"> This wiki is still under initial construction! Please join us in the wiki channel of the official discord to help out! </div> </div> </div><!-- END featured box --> <div class="mp-box" id="mp-box-contribute"><!-- BEGIN contribute box--> ==Contribute to the Wiki== <div class="mp-body"> {{SITENAME}} is a collaborative wiki resource that is open for anyone to edit. You don't need special permission beyond [[Special:UserLogin/signup|registering]] an account to edit most pages, and your contributions can grow the wiki and help other players. ; '''Adding content''' :* If you are unsure of what to do or how to create a page, search for a few articles on the same topic and see what they look like. You can always view the source code in a wiki and learn from what others have done. :* An edit doesn't have to be massive; if you feel you don't want to create whole articles, then just fixing spelling errors and broken links is enough. :* [[Special:UserLogin/signup|Register]] to edit and track your contributions. </div> </div><!-- END contribute box --> </div> {{#description2:Welcome to the {{SITENAME}}, a collaborative wiki resource that is open for anyone to edit!}} __NOTITLE__ __NOTOC__ __NOEDITSECTION__ [[Category:{{SITENAME}}| ]] 566b3a8c462e05735b6935bcd99e5e96593a61b0 File:Site-favicon.ico 6 7 703 8 2024-05-29T21:24:05Z Geekette828 51691 Geekette828 uploaded [[File:Site-favicon.ico]] wikitext text/x-wiki [[Category:Wiki skin images]] f0235f85e2414431e046ae251792bf050daef5f7 Template:Location infobox/Cargo declare 10 537 704 2024-05-29T21:45:20Z Geekette828 51691 Created page with "{{#cargo_declare:_table=Locations |name=String |locationType=String |planet=String |shipLocation=String |hours=String |closedDay=String }} [[Category:Cargo declaration_templates]]" wikitext text/x-wiki {{#cargo_declare:_table=Locations |name=String |locationType=String |planet=String |shipLocation=String |hours=String |closedDay=String }} [[Category:Cargo declaration_templates]] dc557321342ed81c618ad87f1a5044b3d234407e Template:Location NPCs 10 538 705 2024-05-29T21:47:38Z Geekette828 51691 Created page with "<includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Locations_npcs |name={{#var:name}} |npc={{{1}}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Locations_npcs |name=String |npc=String }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude>" wikitext text/x-wiki <includeonly>{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store--> {{#cargo_store:_table=Locations_npcs |name={{#var:name}} |npc={{{1}}} }}<!-- End ifeq -->}}</includeonly><noinclude> {{#cargo_declare:_table=Locations_npcs |name=String |npc=String }}{{documentation}} [[Category:Cargo declaration_templates]] [[Category:Cargo store templates]] </noinclude> e7795c21bcbbd04806e0273b4374fb0bec15063a Template:Location infobox 10 539 706 2024-05-29T21:48:21Z Geekette828 51691 Created page with "<includeonly>{{#invoke:Infobox|main | kind = location | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, NPC, Images |General Information=Category, Planet, Ship Location, Hours, Closed On |NPC = NPCs |NPC_nolabel=yes |Images = Map |Images_nolabel=yes Classification = {{{locationType|}}} Planet = {{#if:{{{planet|}}}|<!-- If plan..." wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = location | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, NPC, Images |General Information=Category, Planet, Ship Location, Hours, Closed On |NPC = NPCs |NPC_nolabel=yes |Images = Map |Images_nolabel=yes Classification = {{{locationType|}}} Planet = {{#if:{{{planet|}}}|<!-- If planet is true -->{{icon|{{{planet|}}}}} |<!-- If planet is false --> }} Ship Location = {{#if:{{{shipLocation|}}}|<!-- If location is true -->{{icon|Spaceship|notext=true}}&nbsp;{{{shipLocation|}}} |<!-- If location is false --> }} Hours = {{{hours|}}} Closed On = {{{closedDay|}}} NPCs = {{#if:{{{npcs|}}}|<!-- If npcs is true -->{{icon list|{{{npcs|}}}}} |<!-- If npcs is false --> }} |Map_wide=yes |Map={{#if:{{{map|}}}|[[File:{{{map}}}{{!}}225px]]|[[File:{{{name|{{PAGENAME}}}}}_location.png{{!}}225px]] }} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Locations |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |locationType={{{locationType|}}} |planet={{{planet|}}} |shipLocation={{{shipLocation|}}} |hours={{{hours|}}} |closedDay={{{closedDay|}}} }}<!-- Defining the name variable, so it can be sent to the downstream templates -->{{#vardefine:name|{{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }}<!-- end vardefine -->}}<!-- Sending the NPCS to the Location of NPCs template, where it will be parsed out and stored in the Locations_npcs table. -->{{#arraymaptemplate:{{{npcs|}}}|Location NPCs|;|}}<!-- Setting classification categories based on locationType-->{{#switch:{{lc:{{{locationType|}}}}} |store|shop = [[Category:Stores]] |planet = [[Category:Planets]] |aoi|area of interest = [[Category:Areas of interest]]<!-- End category setting-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Locations}} [[Category:Infobox templates]]</noinclude> d74bcea9fb9897e399236863496dee756e5d7a68 707 706 2024-05-29T21:48:53Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = location | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, NPC, Images |General Information=Classification, Planet, Ship Location, Hours, Closed On |NPC = NPCs |NPC_nolabel=yes |Images = Map |Images_nolabel=yes Classification = {{{locationType|}}} Planet = {{#if:{{{planet|}}}|<!-- If planet is true -->{{icon|{{{planet|}}}}} |<!-- If planet is false --> }} Ship Location = {{#if:{{{shipLocation|}}}|<!-- If location is true -->{{icon|Spaceship|notext=true}}&nbsp;{{{shipLocation|}}} |<!-- If location is false --> }} Hours = {{{hours|}}} Closed On = {{{closedDay|}}} NPCs = {{#if:{{{npcs|}}}|<!-- If npcs is true -->{{icon list|{{{npcs|}}}}} |<!-- If npcs is false --> }} |Map_wide=yes |Map={{#if:{{{map|}}}|[[File:{{{map}}}{{!}}225px]]|[[File:{{{name|{{PAGENAME}}}}}_location.png{{!}}225px]] }} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Locations |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |locationType={{{locationType|}}} |planet={{{planet|}}} |shipLocation={{{shipLocation|}}} |hours={{{hours|}}} |closedDay={{{closedDay|}}} }}<!-- Defining the name variable, so it can be sent to the downstream templates -->{{#vardefine:name|{{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }}<!-- end vardefine -->}}<!-- Sending the NPCS to the Location of NPCs template, where it will be parsed out and stored in the Locations_npcs table. -->{{#arraymaptemplate:{{{npcs|}}}|Location NPCs|;|}}<!-- Setting classification categories based on locationType-->{{#switch:{{lc:{{{locationType|}}}}} |store|shop = [[Category:Stores]] |planet = [[Category:Planets]] |aoi|area of interest = [[Category:Areas of interest]]<!-- End category setting-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Locations}} [[Category:Infobox templates]]</noinclude> 56849fde0ff92574769839fd2d8801152d7b299a General store 0 414 708 494 2024-05-29T21:52:38Z Geekette828 51691 wikitext text/x-wiki {{Location infobox |locationType=Store |planet= |shipLocation= |hours= |closedDay= |npcs= }} ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at the Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at the Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at the Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at the Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at the Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop/footer}} </tabber> 96e7be9cf2c5e5dbb92aab43ac97429aeeb7b211 710 708 2024-05-29T22:04:55Z Geekette828 51691 wikitext text/x-wiki {{Location infobox |locationType=Store |planet= |shipLocation=Plaza Deck (2) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert }} The '''general store''' is run by Robert and carries a variety of food ingredients and gift items for the player to buy. As the player journies from planet to planet, the crop and tree seed choices will change. While the player is traveling from one planet to another, there are no seeds available for the player to purchase. ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at the Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at the Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at the Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at the Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at the Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop/footer}} </tabber> d4255284814894966fd567c5e8af18b86483eab4 719 710 2024-05-29T22:34:35Z Geekette828 51691 wikitext text/x-wiki {{Location infobox |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert }} The '''general store''' is run by Robert and carries a variety of food ingredients and gift items for the player to buy. As the player journies from planet to planet, the crop and tree seed choices will change. While the player is traveling from one planet to another, there are no seeds available for the player to purchase. ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at the Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at the Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at the Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at the Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at the Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop/footer}} </tabber> ead72950c29f5522c74ac70c4f94e4a823e04167 File:General store.png 6 420 709 458 2024-05-29T21:53:02Z Geekette828 51691 Geekette828 moved page [[File:General Store.png]] to [[File:General store.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Category:Stores 14 540 711 2024-05-29T22:05:35Z Geekette828 51691 Created page with "[[Category:Locations]]" wikitext text/x-wiki [[Category:Locations]] 3c87035104589422729b1e55f5f98737a79ffb3d Category:Locations 14 541 712 2024-05-29T22:05:52Z Geekette828 51691 Created page with "[[Category:{{SITENAME}}]]" wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 714 712 2024-05-29T22:06:42Z Geekette828 51691 wikitext text/x-wiki [[Category:Little-Known Galaxy]] 0cad0dd847fda7e6719d60ae3f09afea66dbd7f6 Category:Items 14 520 713 657 2024-05-29T22:06:30Z Geekette828 51691 wikitext text/x-wiki [[Category:Little-Known Galaxy]] 0cad0dd847fda7e6719d60ae3f09afea66dbd7f6 Category:Little-Known Galaxy 14 542 715 2024-05-29T22:06:56Z Geekette828 51691 Created page with "[[Category:{{SITENAME}}]]" wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 File:General store location.png 6 543 716 2024-05-29T22:13:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Spaceship.png 6 544 717 2024-05-29T22:19:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Location infobox 10 539 718 707 2024-05-29T22:34:27Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = location | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = General Information, Map, NPCs |General Information=Classification, Planet, {{icon|Spaceship|notext=true}}, Hours, Closed On |NPCs = Characters |NPCs_collapsible=Yes |NPCs_collapsed=Yes |Map = Map image |Classification = {{{locationType|}}} |Planet = {{#if:{{{planet|}}}|<!-- If planet is true -->{{icon|{{{planet|}}}}} |<!-- If planet is false --> }} |{{icon|Spaceship|notext=true}} = {{#if:{{{shipLocation|}}}|<!-- If location is true -->&nbsp;{{{shipLocation|}}} |<!-- If location is false --> }} |Hours = {{{hours|}}} |Closed On = {{{closedDay|}}} |Characters_wide=yes |Characters = {{#if:{{{npcs|}}}|<!-- If npcs is true -->{{icon list|{{{npcs|}}}|br=true}} |<!-- If npcs is false --> }} |Map image_wide=yes |Map image={{#if:{{{map|}}}|[[File:{{{map}}}{{!}}225px]]|[[File:{{{name|{{PAGENAME}}}}}_location.png{{!}}225px]] }} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Locations |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |locationType={{{locationType|}}} |planet={{{planet|}}} |shipLocation={{{shipLocation|}}} |hours={{{hours|}}} |closedDay={{{closedDay|}}} }}<!-- Defining the name variable, so it can be sent to the downstream templates -->{{#vardefine:name|{{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }}<!-- end vardefine -->}}<!-- Sending the NPCS to the Location of NPCs template, where it will be parsed out and stored in the Locations_npcs table. -->{{#arraymaptemplate:{{{npcs|}}}|Location NPCs|;|}}<!-- Setting classification categories based on locationType-->{{#switch:{{lc:{{{locationType|}}}}} |store|shop = [[Category:Stores]] |planet = [[Category:Planets]] |aoi|area of interest = [[Category:Areas of interest]]<!-- End category setting-->}}<!-- End ifeq -->}}</includeonly><noinclude> {{documentation}} {{#cargo_attach:table=Locations}} [[Category:Infobox templates]]</noinclude> 6a183bf937e86919034fc98f940217df0f0bfac2 Template:Location infobox/doc 10 545 720 2024-05-29T22:41:17Z Geekette828 51691 Created page with " Infobox for locations in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Location infobox/Cargo declare]] - Declares the [[Special:CargoTables/Locations|locations cargo table]] *[[Template:Location NPCs]] - Declares and stores information for the [[Special:CargoTables/Locations_npcs|locations npcs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Location infobox <!-- These items are only needed if override from def..." wikitext text/x-wiki Infobox for locations in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Location infobox/Cargo declare]] - Declares the [[Special:CargoTables/Locations|locations cargo table]] *[[Template:Location NPCs]] - Declares and stores information for the [[Special:CargoTables/Locations_npcs|locations npcs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Location infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Location information --> |locationType = Classification of location: Store/Residence/Planet/Area of Interest. (plain text string) |planet = If an area of interest, the name of the planet it is on. (plain text string) |shipLocation = If located on the ship, which deck it is located on. |hours = Hours the player is able to enter this area - format: Xam - Xpm . (plain text string) |closedDay = Day of the week the shop is closed. |npcs = List of NPCs that can be found in this location. (Use semicolon ; to separate names) (plain text string) }} }}</syntaxhighlight> ==Examples== ===General Store=== {{Location infobox |name=General store |image=general store.png |map=general store location.png |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert}} <pre> {{Location infobox |name=General store |image=general store.png |map=general store location.png |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert}}</pre> {{clear}} <noinclude>[[Category:Template documentation]]</noinclude> 2edf53e8a162623f627490d23571ac4561d3c058 721 720 2024-05-29T22:41:34Z Geekette828 51691 /* Syntax */ wikitext text/x-wiki Infobox for locations in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:Location infobox/Cargo declare]] - Declares the [[Special:CargoTables/Locations|locations cargo table]] *[[Template:Location NPCs]] - Declares and stores information for the [[Special:CargoTables/Locations_npcs|locations npcs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{Location infobox <!-- These items are only needed if override from default is appropriate. --> |name = Item name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) |description = Description (default uses the description template and PAGENAME) <!-- Location information --> |locationType = Classification of location: Store/Residence/Planet/Area of Interest. (plain text string) |planet = If an area of interest, the name of the planet it is on. (plain text string) |shipLocation = If located on the ship, which deck it is located on. |hours = Hours the player is able to enter this area - format: Xam - Xpm . (plain text string) |closedDay = Day of the week the shop is closed. |npcs = List of NPCs that can be found in this location. (Use semicolon ; to separate names) (plain text string) }}</syntaxhighlight> ==Examples== ===General Store=== {{Location infobox |name=General store |image=general store.png |map=general store location.png |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert}} <pre> {{Location infobox |name=General store |image=general store.png |map=general store location.png |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert}}</pre> {{clear}} <noinclude>[[Category:Template documentation]]</noinclude> f0faf36716cc91b920106f3186a27617e9aebd30 User:Geekette828 2 546 722 2024-05-29T22:47:45Z Geekette828 51691 Created page with "__NOTOC__ ==Little-Known Galaxy== ===Character Profile=== My main character, the one I have the most time playing, a purple haired human. You'll probably see her around the wiki, in various galleries screen shots. ===Discord=== Join us in the official discord; in the #lkg-wiki channel! We are very active, and are always looking for people who want to help! Got editing questions? We got answers!<br> https://discord.com/invite/gVxUqge9Xf<br> You can find me with the disp..." wikitext text/x-wiki __NOTOC__ ==Little-Known Galaxy== ===Character Profile=== My main character, the one I have the most time playing, a purple haired human. You'll probably see her around the wiki, in various galleries screen shots. ===Discord=== Join us in the official discord; in the #lkg-wiki channel! We are very active, and are always looking for people who want to help! Got editing questions? We got answers!<br> https://discord.com/invite/gVxUqge9Xf<br> You can find me with the display name: <code>geekette | lkg.wiki.gg</code> ==Wiki== *Curious what side project's I am working on? Check out my sandbox. [[User:Geekette828/sandbox]] ==Real World== I enjoy playing farming sims like: Sun Haven, My Time at Sandrock/Portia, Dinkum, Stardew, Coral Island etc etc. I also really enjoy Crafting-Survival games (Ark, Valheim, Astroneer, Subnautica etc) and monster-hunter games (Slime Rancher, Pokemon, TemTem). I am an avid achievement hunter, and spend way more money than I should backing kickstarter games. If you're common in the pixel farming-sim space, you'll also see me as a wiki-admin over at the Sun Haven wiki! fffda3af2ed7cc59ee66ae99c0a3ea091aa04f54 File:Sandbox.png 6 547 723 2024-05-29T22:51:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Sandcastle.png 6 548 724 2024-05-29T22:53:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad 725 724 2024-05-29T22:54:27Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Sandcastle.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad 726 725 2024-05-29T22:55:09Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Sandcastle.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Sandbox 10 549 727 2024-05-29T22:55:52Z Geekette828 51691 Created page with "<includeonly>{{Ambox | color = gold | icon = Sandcastle.png | message = This page is meant for testing purposes only. Please disregard any information displayed on this page as factual or cannon. }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Sandboxes]]}}</includeonly><!-- --><noinclude>{{doc|Template:Ambox/doc}}</noinclude>" wikitext text/x-wiki <includeonly>{{Ambox | color = gold | icon = Sandcastle.png | message = This page is meant for testing purposes only. Please disregard any information displayed on this page as factual or cannon. }}<!-- -->{{#ifeq: {{lc:{{{nocat|}}}}} | yes ||[[Category:Sandboxes]]}}</includeonly><!-- --><noinclude>{{doc|Template:Ambox/doc}}</noinclude> b6515d81835b4f1e7a46936e5551c714cf867608 User:Geekette828/sandbox 2 550 728 2024-05-29T22:56:19Z Geekette828 51691 Created page with "{{sandbox}}" wikitext text/x-wiki {{sandbox}} 581adf5184d7ee13a9d8f37f30a4e3b6b20a8fdd Category:Sandboxes 14 551 729 2024-05-29T22:56:30Z Geekette828 51691 Created page with "[[Category:{{SITENAME}}]]" wikitext text/x-wiki [[Category:{{SITENAME}}]] dd8aaa34cf600c1567d240a3f4bc615164a11592 Template:NPC navbox 10 552 730 2024-05-29T22:59:51Z Geekette828 51691 Created page with "<includeonly>{{clear}} {| class="lkg-table tablemedium" style="margin: 3em auto;" ! Characters |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | rnpc | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Romanceable Characters |- |{{Navbox DPL|Romanceable_NPC}} |}<!-- END RNPC BEGIN NPC --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | npc | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Non-romanceable Characters |- |{..." wikitext text/x-wiki <includeonly>{{clear}} {| class="lkg-table tablemedium" style="margin: 3em auto;" ! Characters |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | rnpc | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Romanceable Characters |- |{{Navbox DPL|Romanceable_NPC}} |}<!-- END RNPC BEGIN NPC --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | npc | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Non-romanceable Characters |- |{{Navbox DPL|Characters|not=Romanceable_NPC}} |}<!-- END NPC END NAVBOX --> |} </includeonly><noinclude>{{documentation}} [[Category:Navbox templates]] </noinclude> 75a035f68248d348da314180d780e7295c4b78b3 736 730 2024-05-29T23:04:52Z Geekette828 51691 wikitext text/x-wiki <includeonly> {| class="lkg-table tablemedium" style="margin: 3em auto;" ! Characters |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | rnpc | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Romanceable Characters |- |{{Navbox DPL|Romanceable_NPC}} |}<!-- END RNPC BEGIN NPC --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | npc | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Non-romanceable Characters |- |{{Navbox DPL|Characters|not=Romanceable_NPC}} |}<!-- END NPC END NAVBOX --> |} </includeonly><noinclude>{{documentation}} [[Category:Navbox templates]] </noinclude> 999b7c0193e3bfa3dbb27070dc4d03d8b1ecbc3c Template:NPC navbox/doc 10 553 731 2024-05-29T23:02:30Z Geekette828 51691 Created page with "{{Tocright}} This template is meant to be displayed on the bottom of NPC pages. It provides the user navigation to other NPC pages. The editor should put if the character is an RNP or a (normal) NPC to have that section of the navbox be opened by default. ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC navbox|option}} </syntaxhighlight> Options: <code>rnpc</code> (romanceable NPC) or <code>npc</code> (normal NPC) ==Example== ===No Region Specified=== <pre> {{NPC na..." wikitext text/x-wiki {{Tocright}} This template is meant to be displayed on the bottom of NPC pages. It provides the user navigation to other NPC pages. The editor should put if the character is an RNP or a (normal) NPC to have that section of the navbox be opened by default. ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC navbox|option}} </syntaxhighlight> Options: <code>rnpc</code> (romanceable NPC) or <code>npc</code> (normal NPC) ==Example== ===No Region Specified=== <pre> {{NPC navbox}} </pre> {{clear}} {{NPC navbox}} ===RNPC=== <pre> {{NPC navbox|rnpc}} </pre> {{clear}} {{NPC navbox|rnpc}} d04fa577f04d9214da5adade081c2ddae5fa2c90 Piper 0 510 732 693 2024-05-29T23:03:41Z Geekette828 51691 /* Gifts */ wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q01-10 |gender = Female |occupation = Retired {{verify}} |relationships = |location = Ship |quarters = }} '''Piper''' is .... information on Piper's personality, quirks, various information gleaned from conversations should go here. Information on what Piper looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Earl Grey Tea,Cucumber,Cherry Tart,Fruit Jam,Fruit Wine,Ruby,Viridis Post Card |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Conch Shell |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Chips, Bigfoot Photo |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Recycled Parts, Cosmic Jelly, Carbon Nano-tubes |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Piper has two schedules she follows during a normal week, this schedule is adjusted for holidays and events. {{Schedule |character = Piper |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters. }} ==Mail== Coming Soon! <!-- Email 1 - email_88 -- unlocks print_deco_fixture_floor_flamingo -- attach deco_fixture_floor_flamingo x3 Email 2 - email_89 -- attach Friendship Cake Recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Piper.png|Neutral Piper portrait angry.png|Angry Piper portrait confused.png|Confused Piper portrait happy.png|Happy Piper portrait sad.png|Sad Piper portrait stressed.png|Stressed Piper sprite.png|Sprite portrait crop Piper.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} 45922ba7f6ecfede095b7ccaafeff831ce069c43 735 732 2024-05-29T23:04:32Z Geekette828 51691 /* Navigation */ wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q01-10 |gender = Female |occupation = Retired {{verify}} |relationships = |location = Ship |quarters = }} '''Piper''' is .... information on Piper's personality, quirks, various information gleaned from conversations should go here. Information on what Piper looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Earl Grey Tea,Cucumber,Cherry Tart,Fruit Jam,Fruit Wine,Ruby,Viridis Post Card |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Conch Shell |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Chips, Bigfoot Photo |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Recycled Parts, Cosmic Jelly, Carbon Nano-tubes |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Piper has two schedules she follows during a normal week, this schedule is adjusted for holidays and events. {{Schedule |character = Piper |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters. }} ==Mail== Coming Soon! <!-- Email 1 - email_88 -- unlocks print_deco_fixture_floor_flamingo -- attach deco_fixture_floor_flamingo x3 Email 2 - email_89 -- attach Friendship Cake Recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Piper.png|Neutral Piper portrait angry.png|Angry Piper portrait confused.png|Confused Piper portrait happy.png|Happy Piper portrait sad.png|Sad Piper portrait stressed.png|Stressed Piper sprite.png|Sprite portrait crop Piper.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} 741c33c60c6fea23f31b9c9e83c6fec1a1e90254 Lin 0 509 733 695 2024-05-29T23:03:50Z Geekette828 51691 /* Gifts */ wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} Lin is the ships jr. botanist. .... information on Lin's personality, quirks, various information gleaned from conversations should go here. Information on what Lin looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Soil Sample, Circuit Board |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]]<br>[[:Category:Fertilizers|Fertilizers]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox}} 6444b830735d70f80ea3ab6e232b66008aed588f 734 733 2024-05-29T23:04:23Z Geekette828 51691 /* Navigation */ wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} Lin is the ships jr. botanist. .... information on Lin's personality, quirks, various information gleaned from conversations should go here. Information on what Lin looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Chai Tea,Ginger,Ginger Sticky Rice,Moss Drop,Alien Farm Tool,Soil Bacteria,Green Smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky Clover,Lettuce,Tree Planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Soil Sample, Circuit Board |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]]<br>[[:Category:Fertilizers|Fertilizers]] |dislike = Electro Plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|rnpc}} 596cf97d621dc93d3eefe8bf54de5f83738ec659 File:Alien fungus.png 6 554 737 2024-05-29T23:09:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Amoeba.png 6 555 738 2024-05-29T23:09:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Common cold.png 6 357 739 381 2024-05-29T23:09:30Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Common cold.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Dust mite.png 6 340 740 364 2024-05-29T23:09:31Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Dust mite.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:E. coli.png 6 556 741 2024-05-29T23:09:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Green algae.png 6 358 742 382 2024-05-29T23:09:34Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Green algae.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Lichen.png 6 355 743 379 2024-05-29T23:09:35Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Lichen.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Nanobot.png 6 337 744 361 2024-05-29T23:09:36Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Nanobot.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Nematode.png 6 356 745 380 2024-05-29T23:09:37Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Nematode.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Penicillin.png 6 332 746 356 2024-05-29T23:09:38Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Penicillin.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Probiotics.png 6 557 747 2024-05-29T23:09:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Red algae.png 6 344 748 368 2024-05-29T23:09:41Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Red algae.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Root bacteria.png 6 334 749 358 2024-05-29T23:09:42Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Root bacteria.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Sea sparkle.png 6 333 750 357 2024-05-29T23:09:43Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Sea sparkle.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Slime mold.png 6 339 751 363 2024-05-29T23:09:44Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Slime mold.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Slipper organism.png 6 331 752 355 2024-05-29T23:09:45Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Slipper organism.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Soil bacteria.png 6 338 753 362 2024-05-29T23:09:45Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Soil bacteria.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Strep bacteria.png 6 349 754 373 2024-05-29T23:09:46Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Strep bacteria.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Super alien fungus.png 6 558 755 2024-05-29T23:09:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super amoeba.png 6 559 756 2024-05-29T23:09:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super common cold.png 6 560 757 2024-05-29T23:09:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super dust mite.png 6 561 758 2024-05-29T23:09:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super e. coli.png 6 562 759 2024-05-29T23:09:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super green algae.png 6 563 760 2024-05-29T23:09:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super lichen.png 6 564 761 2024-05-29T23:09:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super nanobot.png 6 565 762 2024-05-29T23:10:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super nematode.png 6 566 763 2024-05-29T23:10:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super penicillin.png 6 567 764 2024-05-29T23:10:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super probiotics.png 6 568 765 2024-05-29T23:10:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super red algae.png 6 569 766 2024-05-29T23:10:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super root bacteria.png 6 570 767 2024-05-29T23:10:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super sea sparkle.png 6 571 768 2024-05-29T23:10:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super slime mold.png 6 572 769 2024-05-29T23:10:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super slipper organism.png 6 573 770 2024-05-29T23:10:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Bouquet of flowers.png 6 574 771 2024-05-29T23:10:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Flower images]] 38aa0ff6429c1e486c995abbb8df61ee05252ba1 File:Super soil bacteria.png 6 575 772 2024-05-29T23:10:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Desert flower.png 6 576 773 2024-05-29T23:10:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Flower images]] 38aa0ff6429c1e486c995abbb8df61ee05252ba1 File:Super strep bacteria.png 6 577 774 2024-05-29T23:10:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super sweat bacteria.png 6 578 775 2024-05-29T23:10:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Ice flower.png 6 579 776 2024-05-29T23:10:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Flower images]] 38aa0ff6429c1e486c995abbb8df61ee05252ba1 File:Lava flower.png 6 580 777 2024-05-29T23:10:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Flower images]] 38aa0ff6429c1e486c995abbb8df61ee05252ba1 File:Super tardigrade.png 6 581 778 2024-05-29T23:10:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super tough bacteria.png 6 582 779 2024-05-29T23:10:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Ocean flower.png 6 583 780 2024-05-29T23:10:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Flower images]] 38aa0ff6429c1e486c995abbb8df61ee05252ba1 File:Super toxic bacteria.png 6 584 781 2024-05-29T23:10:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Utopia flower.png 6 585 782 2024-05-29T23:10:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Flower images]] 38aa0ff6429c1e486c995abbb8df61ee05252ba1 File:Super water flea.png 6 586 783 2024-05-29T23:10:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Super wild yeast.png 6 587 784 2024-05-29T23:10:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Microbe images]] 52d93fa1c4347e3fc39fad349e45f8d28abf86ac File:Sweat bacteria.png 6 342 785 366 2024-05-29T23:10:31Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Sweat bacteria.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Tardigrade.png 6 350 786 374 2024-05-29T23:10:32Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Tardigrade.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Tough bacteria.png 6 354 787 378 2024-05-29T23:10:33Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Tough bacteria.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Toxic bacteria.png 6 348 788 372 2024-05-29T23:10:33Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Toxic bacteria.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Water flea.png 6 351 789 375 2024-05-29T23:10:34Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Water flea.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Wild yeast.png 6 346 790 370 2024-05-29T23:10:36Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Wild yeast.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Flour.png 6 483 791 559 2024-05-29T23:11:12Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Flour.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Radiated spices.png 6 588 792 2024-05-29T23:11:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Radiated vegetable oil.png 6 589 793 2024-05-29T23:11:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Radiated vinegar.png 6 590 794 2024-05-29T23:11:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Rice.png 6 591 795 2024-05-29T23:11:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Spices.png 6 592 796 2024-05-29T23:11:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Sugar.png 6 482 797 558 2024-05-29T23:11:20Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Sugar.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Super radiated spices.png 6 593 798 2024-05-29T23:11:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Super radiated vegetable oil.png 6 594 799 2024-05-29T23:11:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Super radiated vinegar.png 6 595 800 2024-05-29T23:11:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Super spices.png 6 596 801 2024-05-29T23:11:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Super vegetable oil.png 6 597 802 2024-05-29T23:11:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Super vinegar.png 6 598 803 2024-05-29T23:11:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Vegetable oil.png 6 599 804 2024-05-29T23:11:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Vinegar.png 6 600 805 2024-05-29T23:11:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food ingredient images]] 64976a7061c7ad0e57542260aff86280ec149da4 File:Amber resin.png 6 601 806 2024-05-29T23:11:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Bismuth.png 6 602 807 2024-05-29T23:11:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Bloodstone.png 6 603 808 2024-05-29T23:11:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Bubble stone.png 6 604 809 2024-05-29T23:11:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Chunky crystal.png 6 605 810 2024-05-29T23:11:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Coral crystal.png 6 606 811 2024-05-29T23:11:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Diamond.png 6 607 812 2024-05-29T23:11:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Firefly gem.png 6 608 813 2024-05-29T23:11:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Fool's gold.png 6 609 814 2024-05-29T23:11:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Friendship stone.png 6 610 815 2024-05-29T23:11:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Galaxy stone.png 6 611 816 2024-05-29T23:12:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Gravity stone.png 6 612 817 2024-05-29T23:12:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Lunar basalt.png 6 613 818 2024-05-29T23:12:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Luz opal.png 6 614 819 2024-05-29T23:12:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Magnesite.png 6 615 820 2024-05-29T23:12:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Moonstone.png 6 616 821 2024-05-29T23:12:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Moss drop.png 6 617 822 2024-05-29T23:12:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Nebula jade.png 6 618 823 2024-05-29T23:12:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Nova jewel.png 6 619 824 2024-05-29T23:12:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Pearl.png 6 620 825 2024-05-29T23:12:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Petrified wood.png 6 621 826 2024-05-29T23:12:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Prism shard.png 6 622 827 2024-05-29T23:12:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Rogue obsidian.png 6 623 828 2024-05-29T23:12:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Ruby.png 6 624 829 2024-05-29T23:12:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Sailor's gem.png 6 625 830 2024-05-29T23:12:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Sapphire.png 6 626 831 2024-05-29T23:12:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Sea glass.png 6 627 832 2024-05-29T23:12:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Star garnet.png 6 628 833 2024-05-29T23:12:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Sulfur.png 6 629 834 2024-05-29T23:12:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Sunstone.png 6 630 835 2024-05-29T23:12:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Gem images]] fd8cb4811de57cda8d78e6ce3fab0fb79ccb3045 File:Energy tonic.png 6 631 836 2024-05-29T23:12:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Medicine images]] c2a7fba920e5694300b9c00710c1bbc72230fc1f File:First aid kit.png 6 632 837 2024-05-29T23:12:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Medicine images]] c2a7fba920e5694300b9c00710c1bbc72230fc1f File:Health tonic.png 6 633 838 2024-05-29T23:12:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Medicine images]] c2a7fba920e5694300b9c00710c1bbc72230fc1f File:Vitamins.png 6 634 839 2024-05-29T23:12:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Medicine images]] c2a7fba920e5694300b9c00710c1bbc72230fc1f File:Deco bookcase cuddles med.png 6 635 840 2024-05-29T23:14:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Large bookcase.png 6 636 841 2024-05-29T23:14:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Large dresser.png 6 637 842 2024-05-29T23:14:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Large vintage bookcase.png 6 638 843 2024-05-29T23:14:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Large white bookcase.png 6 639 844 2024-05-29T23:14:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Medium bookcase.png 6 640 845 2024-05-29T23:14:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Medium dresser.png 6 641 846 2024-05-29T23:14:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Medium vintage bookcase.png 6 642 847 2024-05-29T23:14:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Medium white bookcase.png 6 643 848 2024-05-29T23:14:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Metal locker.png 6 644 849 2024-05-29T23:14:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Refrigerator.png 6 645 850 2024-05-29T23:14:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Small bookcase.png 6 646 851 2024-05-29T23:14:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Small dresser.png 6 647 852 2024-05-29T23:14:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Small vintage bookcase.png 6 648 853 2024-05-29T23:14:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Small white bookcase.png 6 649 854 2024-05-29T23:14:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Storage bin.png 6 279 855 303 2024-05-29T23:14:32Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Storage bin.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Superhero locker.png 6 650 856 2024-05-29T23:14:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Workbench bin.png 6 651 857 2024-05-29T23:14:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Storage furniture images]] aeb1ea628da8ff302e4a44b48b4c32c2fb150bcf File:Alien farm tool.png 6 652 858 2024-05-29T23:14:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Alien stickerbook.png 6 653 859 2024-05-29T23:14:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Alien talon.png 6 654 860 2024-05-29T23:14:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Ancient coins.png 6 655 861 2024-05-29T23:14:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Autographed book.png 6 656 862 2024-05-29T23:14:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Bag o' marbles.png 6 657 863 2024-05-29T23:14:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Bigfoot photo.png 6 658 864 2024-05-29T23:14:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Circuit board.png 6 659 865 2024-05-29T23:15:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Data disc.png 6 660 866 2024-05-29T23:15:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Finger painting.png 6 661 867 2024-05-29T23:15:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Fossil imprint.png 6 662 868 2024-05-29T23:15:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Medallion.png 6 663 869 2024-05-29T23:15:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Micro black hole.png 6 664 870 2024-05-29T23:15:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Music box.png 6 665 871 2024-05-29T23:15:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Playing cards.png 6 666 872 2024-05-29T23:15:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Pretty necklace.png 6 667 873 2024-05-29T23:15:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Robot toy.png 6 668 874 2024-05-29T23:15:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Snowshoes.png 6 669 875 2024-05-29T23:15:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Space probe.png 6 670 876 2024-05-29T23:15:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Starflux piece.png 6 671 877 2024-05-29T23:15:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Statue piece.png 6 672 878 2024-05-29T23:15:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Temporal timepiece.png 6 673 879 2024-05-29T23:15:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Twighlight flute.png 6 674 880 2024-05-29T23:15:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Vhs tape.png 6 675 881 2024-05-29T23:15:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Viridis post card.png 6 676 882 2024-05-29T23:15:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Warp core.png 6 677 883 2024-05-29T23:15:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Water flippers.png 6 678 884 2024-05-29T23:15:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Whale tooth.png 6 679 885 2024-05-29T23:15:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Wishbone.png 6 680 886 2024-05-29T23:15:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:Xt80 gaming console.png 6 681 887 2024-05-29T23:15:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Artifact images]] 454408079251fd164cb8d4fc0f9ee165e6da7045 File:A.v.o. tree seeds.png 6 682 888 2024-05-29T23:15:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Atom apple tree seeds.png 6 683 889 2024-05-29T23:15:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Cactonut tree seeds.png 6 322 890 346 2024-05-29T23:15:38Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Cactonut tree seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cherrysicle tree seeds.png 6 684 891 2024-05-29T23:15:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Flaming orange tree seeds.png 6 685 892 2024-05-29T23:15:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Ocean banana tree seeds.png 6 686 893 2024-05-29T23:15:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Cuddly decoration schematics.png 6 687 894 2024-05-29T23:31:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Ice decoration schematics.png 6 688 895 2024-05-29T23:31:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Lunar decoration schematics.png 6 689 896 2024-05-29T23:31:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Ocean decoration schematics.png 6 690 897 2024-05-29T23:31:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Organic decoration schematics.png 6 691 898 2024-05-29T23:31:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Pirate decoration schematics.png 6 692 899 2024-05-29T23:31:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Prehistoric decoration schematics.png 6 693 900 2024-05-29T23:31:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Superhero decoration schematics.png 6 694 901 2024-05-29T23:31:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Vintage decoration data.png 6 695 902 2024-05-29T23:31:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:3D schematic images]] 92e28945508a094dbcada866deede68117c492ee File:Dark a-slant floor texture.png 6 696 903 2024-05-29T23:31:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Dark concrete floor texture.png 6 697 904 2024-05-29T23:31:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Dark hex floor texture.png 6 698 905 2024-05-29T23:31:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Dark riveted floor texture.png 6 699 906 2024-05-29T23:31:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Light a-slant floor texture.png 6 700 907 2024-05-29T23:32:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Light concrete floor texture.png 6 701 908 2024-05-29T23:32:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Light hex floor texture.png 6 702 909 2024-05-29T23:32:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Light riveted floor texture.png 6 703 910 2024-05-29T23:32:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Texture floor dark.png 6 704 911 2024-05-29T23:32:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Texture floor light.png 6 705 912 2024-05-29T23:32:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Floor texture images]] d93bf1726fd540616f8cd2f8fe634029b32e0424 File:Shuttle.png 6 706 913 2024-05-29T23:32:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Friendship day wall texture.png 6 707 914 2024-05-29T23:32:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Pastel striped wall texture.png 6 708 915 2024-05-29T23:33:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall blue.png 6 709 916 2024-05-29T23:33:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall brick.png 6 710 917 2024-05-29T23:33:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall cryogen.png 6 711 918 2024-05-29T23:33:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall dark.png 6 712 919 2024-05-29T23:33:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall green.png 6 713 920 2024-05-29T23:33:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall h.png 6 714 921 2024-05-29T23:33:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall i.png 6 715 922 2024-05-29T23:33:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall j.png 6 716 923 2024-05-29T23:33:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Antennas.png 6 717 924 2024-05-29T23:33:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall light.png 6 718 925 2024-05-29T23:33:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Bear hat.png 6 719 926 2024-05-29T23:33:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall max.png 6 720 927 2024-05-29T23:33:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Texture wall nick.png 6 721 928 2024-05-29T23:33:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Beret.png 6 722 929 2024-05-29T23:33:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall pink.png 6 723 930 2024-05-29T23:33:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Blue headband.png 6 724 931 2024-05-29T23:33:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall playhouse.png 6 725 932 2024-05-29T23:33:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Blue trucker hat.png 6 726 933 2024-05-29T23:33:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall purple.png 6 727 934 2024-05-29T23:33:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Boater hat.png 6 728 935 2024-05-29T23:33:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Bow.png 6 729 936 2024-05-29T23:33:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall scales.png 6 730 937 2024-05-29T23:33:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Bridal veil.png 6 731 938 2024-05-29T23:33:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Bunny ears.png 6 732 939 2024-05-29T23:33:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall shinji.png 6 733 940 2024-05-29T23:33:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Captain's hat.png 6 734 941 2024-05-29T23:33:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall study.png 6 735 942 2024-05-29T23:33:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Chef hat.png 6 736 943 2024-05-29T23:33:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Cloche hat.png 6 737 944 2024-05-29T23:33:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall winter.png 6 738 945 2024-05-29T23:33:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Cocktail hat.png 6 739 946 2024-05-29T23:33:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Texture wall yellow.png 6 740 947 2024-05-29T23:33:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Wall texture images]] ca93e8b30cb989aa74ccd8c41241e5bed3729afc File:Construction hat.png 6 741 948 2024-05-29T23:33:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Cyclist cap.png 6 742 949 2024-05-29T23:33:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Dunce hat.png 6 743 950 2024-05-29T23:33:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Formal top hat.png 6 744 951 2024-05-29T23:33:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Friendship beanie.png 6 745 952 2024-05-29T23:33:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Friendship flower.png 6 746 953 2024-05-29T23:33:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Fuzzy earmuffs.png 6 747 954 2024-05-29T23:33:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Green beanie.png 6 748 955 2024-05-29T23:33:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Grey beanie.png 6 749 956 2024-05-29T23:33:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Hat none.png 6 750 957 2024-05-29T23:33:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Karate band.png 6 751 958 2024-05-29T23:33:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Mining helmet.png 6 752 959 2024-05-29T23:33:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Party hat.png 6 753 960 2024-05-29T23:33:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Pirate captain's hat.png 6 754 961 2024-05-29T23:33:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Royal crown.png 6 755 962 2024-05-29T23:33:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Straw hat.png 6 756 963 2024-05-29T23:34:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Facial hair none.png 6 757 964 2024-05-29T23:34:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Tropical utopia hat.png 6 758 965 2024-05-29T23:34:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Trucker hat.png 6 759 966 2024-05-29T23:34:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hat images]] d79da51a99ce5cf544ebf82203df3126feb454c5 File:Facial hair pencil stache.png 6 760 967 2024-05-29T23:34:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair soul patch.png 6 761 968 2024-05-29T23:34:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair stubble.png 6 762 969 2024-05-29T23:34:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair beard.png 6 763 970 2024-05-29T23:34:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair beard thin.png 6 764 971 2024-05-29T23:34:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair chin strap.png 6 765 972 2024-05-29T23:34:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair genghis khan.png 6 766 973 2024-05-29T23:34:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair goatee.png 6 767 974 2024-05-29T23:34:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair handlebar.png 6 768 975 2024-05-29T23:34:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair handlebar twirl.png 6 769 976 2024-05-29T23:34:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair mustache.png 6 770 977 2024-05-29T23:34:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair mutton chops.png 6 771 978 2024-05-29T23:34:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Facial hair mutton chops partial.png 6 772 979 2024-05-29T23:34:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:facial hair images]] e4e5cd8e26372d2f9e58146a87f4651f621ecaea File:Helmet.png 6 773 980 2024-05-29T23:34:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Beach.sim.png 6 774 981 2024-05-29T23:34:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Library.sim.png 6 775 982 2024-05-29T23:35:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Bonny curls.png 6 776 983 2024-05-29T23:35:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Bowler.png 6 777 984 2024-05-29T23:35:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Futuristic shave.png 6 778 985 2024-05-29T23:35:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair afro.png 6 779 986 2024-05-29T23:35:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair afro short.png 6 780 987 2024-05-29T23:35:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair bald.png 6 781 988 2024-05-29T23:35:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair balding.png 6 782 989 2024-05-29T23:35:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair business.png 6 783 990 2024-05-29T23:35:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair business woman.png 6 784 991 2024-05-29T23:35:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair buzzcut.png 6 785 992 2024-05-29T23:35:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair dreads.png 6 786 993 2024-05-29T23:35:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair emo.png 6 787 994 2024-05-29T23:35:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair flat top.png 6 788 995 2024-05-29T23:35:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Relic.png 6 789 996 2024-05-29T23:35:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Hair long wave.png 6 790 997 2024-05-29T23:35:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair medium wavy.png 6 791 998 2024-05-29T23:36:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair page boy.png 6 792 999 2024-05-29T23:36:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair pixie.png 6 793 1000 2024-05-29T23:36:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair pony tail.png 6 794 1001 2024-05-29T23:36:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair rebel.png 6 795 1002 2024-05-29T23:36:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair short curls.png 6 796 1003 2024-05-29T23:36:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair short n neat.png 6 797 1004 2024-05-29T23:36:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair side braid.png 6 798 1005 2024-05-29T23:36:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair slick.png 6 799 1006 2024-05-29T23:36:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair straight n long.png 6 800 1007 2024-05-29T23:36:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair textured long.png 6 801 1008 2024-05-29T23:36:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair textured tied.png 6 802 1009 2024-05-29T23:36:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair thick n wavy.png 6 803 1010 2024-05-29T23:36:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair top bun.png 6 804 1011 2024-05-29T23:36:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Hair victory rolls short.png 6 805 1012 2024-05-29T23:36:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Mohawk.png 6 806 1013 2024-05-29T23:36:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Sadie shave.png 6 807 1014 2024-05-29T23:36:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Classic orange armchair.png 6 808 1015 2024-05-29T23:36:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Spotty markings.png 6 809 1016 2024-05-29T23:36:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Ice window.png 6 810 1017 2024-05-29T23:36:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Striped markings.png 6 811 1018 2024-05-29T23:36:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Lunar end table.png 6 812 1019 2024-05-29T23:36:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Top knot.png 6 813 1020 2024-05-29T23:36:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Lunar kitchen table.png 6 814 1021 2024-05-29T23:36:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Twintails.png 6 815 1022 2024-05-29T23:36:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Lunar square table.png 6 816 1023 2024-05-29T23:36:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Victory rolls.png 6 817 1024 2024-05-29T23:36:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair style images]] 74f10968d1e0dfce06d1306dd5f0bd0220b5b5c2 File:Metal coffee table.png 6 818 1025 2024-05-29T23:36:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Metal end table.png 6 819 1026 2024-05-29T23:36:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Metal kitchen table.png 6 820 1027 2024-05-29T23:36:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Metal square table.png 6 821 1028 2024-05-29T23:36:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean coffee table.png 6 822 1029 2024-05-29T23:36:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean end table.png 6 823 1030 2024-05-29T23:36:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean kitchen table.png 6 824 1031 2024-05-29T23:36:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean square table.png 6 825 1032 2024-05-29T23:36:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Organic coffee table.png 6 826 1033 2024-05-29T23:36:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Organic end table.png 6 827 1034 2024-05-29T23:36:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Organic kitchen table.png 6 828 1035 2024-05-29T23:36:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Organic square table.png 6 829 1036 2024-05-29T23:36:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Laser blaster.png 6 262 1037 286 2024-05-29T23:36:57Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Laser blaster.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Microbe detector.png 6 830 1038 2024-05-29T23:36:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Tool images]] 0d113be098c679789e0ce18a944900be33bca8ba File:Panel window.png 6 831 1039 2024-05-29T23:36:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Restoration ray.png 6 257 1040 281 2024-05-29T23:37:00Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Restoration ray.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Pirate coffee table.png 6 832 1041 2024-05-29T23:37:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Shovel.png 6 253 1042 277 2024-05-29T23:37:01Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Shovel.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Pirate end table.png 6 833 1043 2024-05-29T23:37:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Watering pack.png 6 249 1044 273 2024-05-29T23:37:02Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Watering pack.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Pirate kitchen table.png 6 834 1045 2024-05-29T23:37:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pirate square table.png 6 835 1046 2024-05-29T23:37:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric coffee table.png 6 836 1047 2024-05-29T23:37:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric end table.png 6 837 1048 2024-05-29T23:37:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric kitchen table.png 6 838 1049 2024-05-29T23:37:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric square table.png 6 839 1050 2024-05-29T23:37:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Round coffee table.png 6 840 1051 2024-05-29T23:37:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Round end table.png 6 841 1052 2024-05-29T23:37:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Round kitchen table.png 6 842 1053 2024-05-29T23:37:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Round port window.png 6 843 1054 2024-05-29T23:37:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Dust bunny.png 6 844 1055 2024-05-29T23:37:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Trash images]] 40376e2167c883126137aa6e286c4f9a91cd24bf File:Round square table.png 6 845 1056 2024-05-29T23:37:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Small round port window.png 6 846 1057 2024-05-29T23:37:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lost sock.png 6 847 1058 2024-05-29T23:37:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Trash images]] 40376e2167c883126137aa6e286c4f9a91cd24bf File:Pollen.png 6 347 1059 371 2024-05-29T23:37:26Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Pollen.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Square window.png 6 848 1060 2024-05-29T23:37:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Stray hair.png 6 343 1061 367 2024-05-29T23:37:27Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Stray hair.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Superhero coffee table.png 6 849 1062 2024-05-29T23:37:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Trash.png 6 850 1063 2024-05-29T23:37:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Trash images]] 40376e2167c883126137aa6e286c4f9a91cd24bf File:Superhero end table.png 6 851 1064 2024-05-29T23:37:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero kitchen table.png 6 852 1065 2024-05-29T23:37:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero square table.png 6 853 1066 2024-05-29T23:37:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Traditional coffee table.png 6 854 1067 2024-05-29T23:37:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Traditional end table.png 6 855 1068 2024-05-29T23:37:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Traditional kitchen table.png 6 856 1069 2024-05-29T23:37:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Traditional square table.png 6 857 1070 2024-05-29T23:37:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage coffee table.png 6 858 1071 2024-05-29T23:37:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage end table.png 6 859 1072 2024-05-29T23:37:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage kitchen table.png 6 860 1073 2024-05-29T23:37:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage square table.png 6 861 1074 2024-05-29T23:37:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Wardrobe.png 6 862 1075 2024-05-29T23:37:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Autumn salad recipe.png 6 863 1076 2024-05-29T23:37:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Abstract coffee table.png 6 864 1077 2024-05-29T23:37:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Avocado toast recipe.png 6 865 1078 2024-05-29T23:37:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Abstract end table.png 6 866 1079 2024-05-29T23:37:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Bean chili bowl recipe.png 6 867 1080 2024-05-29T23:37:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Blueberry muffin recipe.png 6 868 1081 2024-05-29T23:37:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Abstract kitchen table.png 6 869 1082 2024-05-29T23:37:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Bread recipe.png 6 870 1083 2024-05-29T23:37:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Abstract plant.png 6 871 1084 2024-05-29T23:37:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Carrot cake recipe.png 6 872 1085 2024-05-29T23:38:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Abstract square table.png 6 873 1086 2024-05-29T23:38:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Chai tea recipe.png 6 874 1087 2024-05-29T23:38:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Cherry tart recipe.png 6 875 1088 2024-05-29T23:38:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Abstract stool.png 6 876 1089 2024-05-29T23:38:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Abstract wall light.png 6 877 1090 2024-05-29T23:38:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Chocolate banana recipe.png 6 878 1091 2024-05-29T23:38:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Chocolate cake recipe.png 6 879 1092 2024-05-29T23:38:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Bar stool.png 6 880 1093 2024-05-29T23:38:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Basic stool.png 6 881 1094 2024-05-29T23:38:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Chocolate orange scones recipe.png 6 882 1095 2024-05-29T23:38:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Chopped salad recipe.png 6 883 1096 2024-05-29T23:38:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Blue reed plant in purple pot.png 6 884 1097 2024-05-29T23:38:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Edamame recipe.png 6 885 1098 2024-05-29T23:38:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Blue table lamp.png 6 886 1099 2024-05-29T23:38:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Friendship cake recipe.png 6 887 1100 2024-05-29T23:38:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Blue wall light.png 6 888 1101 2024-05-29T23:38:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Composite coffee table.png 6 889 1102 2024-05-29T23:38:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Fruit bar recipe.png 6 890 1103 2024-05-29T23:38:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Composite end table.png 6 891 1104 2024-05-29T23:38:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Fruit salad recipe.png 6 892 1105 2024-05-29T23:38:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Composite kitchen table.png 6 893 1106 2024-05-29T23:38:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Outer hull planter data.png 6 894 1107 2024-05-29T23:38:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Ginger sticky rice recipe.png 6 895 1108 2024-05-29T23:38:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Outer hull tree planter data.png 6 896 1109 2024-05-29T23:38:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Composite square table.png 6 897 1110 2024-05-29T23:38:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Intersteller burger recipe.png 6 898 1111 2024-05-29T23:38:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Press data.png 6 899 1112 2024-05-29T23:38:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Cuddles coffee table.png 6 900 1113 2024-05-29T23:38:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Recycler data.png 6 901 1114 2024-05-29T23:38:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Cuddles end table.png 6 902 1115 2024-05-29T23:38:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Mashed potatoes recipe.png 6 903 1116 2024-05-29T23:38:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Solar panel large data.png 6 904 1117 2024-05-29T23:38:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Cuddles kitchen table.png 6 905 1118 2024-05-29T23:38:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Solar panel medium data.png 6 906 1119 2024-05-29T23:38:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Cuddles square table.png 6 907 1120 2024-05-29T23:38:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Noodles recipe.png 6 908 1121 2024-05-29T23:38:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Solar panel small data.png 6 909 1122 2024-05-29T23:38:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Dead plant.png 6 910 1123 2024-05-29T23:38:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pad thai recipe.png 6 911 1124 2024-05-29T23:38:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Advanced dark matter refiner data.png 6 912 1125 2024-05-29T23:38:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Glass coffee table.png 6 913 1126 2024-05-29T23:38:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pancakes recipe.png 6 914 1127 2024-05-29T23:38:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Glass end table.png 6 915 1128 2024-05-29T23:38:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Advanced garden bot data.png 6 916 1129 2024-05-29T23:38:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Glass kitchen table.png 6 917 1130 2024-05-29T23:38:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Advanced outer hull garden bot data.png 6 918 1131 2024-05-29T23:38:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Peanut butter & pickle sandwich recipe.png 6 919 1132 2024-05-29T23:38:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Glass square table.png 6 920 1133 2024-05-29T23:38:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Battery generator data.png 6 921 1134 2024-05-29T23:38:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Pineapple fried rice recipe.png 6 922 1135 2024-05-29T23:38:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Green table lamp.png 6 923 1136 2024-05-29T23:38:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Canning pot data.png 6 924 1137 2024-05-29T23:38:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Hanging friendship flower.png 6 925 1138 2024-05-29T23:38:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ramen bowl recipe.png 6 926 1139 2024-05-29T23:38:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Carbon converter data.png 6 927 1140 2024-05-29T23:38:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Ice coffee table.png 6 928 1141 2024-05-29T23:38:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ice end table.png 6 929 1142 2024-05-29T23:38:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Red bean bun recipe.png 6 930 1143 2024-05-29T23:38:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Dark matter refiner data.png 6 931 1144 2024-05-29T23:38:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Ice kitchen table.png 6 932 1145 2024-05-29T23:38:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Seaside sushi recipe.png 6 933 1146 2024-05-29T23:38:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Dehydrator data.png 6 934 1147 2024-05-29T23:38:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Ice square table.png 6 935 1148 2024-05-29T23:38:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Spiced pumpkin soup recipe.png 6 936 1149 2024-05-29T23:38:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Feed repository data.png 6 937 1150 2024-05-29T23:38:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Jute stool.png 6 938 1151 2024-05-29T23:38:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Fermentation tank data.png 6 939 1152 2024-05-29T23:38:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Squash ravioli recipe.png 6 940 1153 2024-05-29T23:38:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Lunar coffee table.png 6 941 1154 2024-05-29T23:38:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Fiber spinner data.png 6 942 1155 2024-05-29T23:38:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Stuffed peppers recipe.png 6 943 1156 2024-05-29T23:38:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Multi-color wall light.png 6 944 1157 2024-05-29T23:38:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Freezer data.png 6 945 1158 2024-05-29T23:38:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Sugar cookie recipe.png 6 946 1159 2024-05-29T23:38:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Ocean floor lamp.png 6 947 1160 2024-05-29T23:38:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Tamale pie recipe.png 6 948 1161 2024-05-29T23:38:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Garden bot data.png 6 949 1162 2024-05-29T23:38:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Tomato soup recipe.png 6 950 1163 2024-05-29T23:38:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Recipe images]] f95287c5a95db33190273ec67d8f45111ac97036 File:Organic floor lamp.png 6 951 1164 2024-05-29T23:38:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Large xeno pod data.png 6 952 1165 2024-05-29T23:38:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Organic hanging plant.png 6 953 1166 2024-05-29T23:38:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Medicine machine data.png 6 954 1167 2024-05-29T23:38:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Pampas bushel.png 6 955 1168 2024-05-29T23:38:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Meteorite extractor data.png 6 956 1169 2024-05-29T23:38:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Microbe compost machine data.png 6 957 1170 2024-05-29T23:38:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Pink wall light.png 6 958 1171 2024-05-29T23:38:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Outer hull garden bot data.png 6 959 1172 2024-05-29T23:38:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Pirate floor lamp.png 6 960 1173 2024-05-29T23:38:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superior garden bot data.png 6 961 1174 2024-05-29T23:38:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Pirate wall lamp.png 6 962 1175 2024-05-29T23:38:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superior outer hull garden bot data.png 6 963 1176 2024-05-29T23:38:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Workbench images]] fb1f04a84c78e2f2a4e5ccfc095e00d3a7028673 File:Potted desert flower.png 6 964 1177 2024-05-29T23:39:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted friendship flowers.png 6 965 1178 2024-05-29T23:39:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted ice flower.png 6 966 1179 2024-05-29T23:39:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted lava flower.png 6 967 1180 2024-05-29T23:39:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted lucky clovers.png 6 968 1181 2024-05-29T23:39:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted ocean flower.png 6 969 1182 2024-05-29T23:39:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted puffy flower.png 6 970 1183 2024-05-29T23:39:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted viridis flower.png 6 971 1184 2024-05-29T23:39:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Potted yellow daisies.png 6 972 1185 2024-05-29T23:39:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric floor lamp.png 6 973 1186 2024-05-29T23:39:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Advanced furnace instructions.png 6 974 1187 2024-05-29T23:39:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Purple reeds.png 6 975 1188 2024-05-29T23:39:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Compost machine instructions.png 6 976 1189 2024-05-29T23:39:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Red wall light.png 6 977 1190 2024-05-29T23:39:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft art wall polka green.png 6 978 1191 2024-05-29T23:39:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Restuarant stool.png 6 979 1192 2024-05-29T23:39:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft art wall polka purple.png 6 980 1193 2024-05-29T23:39:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft art wall scenic black painting.png 6 981 1194 2024-05-29T23:39:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Soft table lamp.png 6 982 1195 2024-05-29T23:39:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft art wall scenic green painting.png 6 983 1196 2024-05-29T23:39:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Superhero floor lamp.png 6 984 1197 2024-05-29T23:39:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft art wall splatter painting.png 6 985 1198 2024-05-29T23:39:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Tall bush.png 6 986 1199 2024-05-29T23:39:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft bench commonc.png 6 987 1200 2024-05-29T23:39:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft bench commone.png 6 988 1201 2024-05-29T23:39:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Vintage floor lamp.png 6 989 1202 2024-05-29T23:39:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft block glass.png 6 990 1203 2024-05-29T23:39:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Vintage wall lamp.png 6 991 1204 2024-05-29T23:39:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft bookcase commonb lg.png 6 992 1205 2024-05-29T23:39:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:White wall light.png 6 993 1206 2024-05-29T23:39:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft bookcase commonb med.png 6 994 1207 2024-05-29T23:39:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Hermy's promo marquee micro organisms!.png 6 995 1208 2024-05-29T23:39:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft bookcase commonb sm.png 6 996 1209 2024-05-29T23:39:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Hermy's promo marquee glitzy gems!.png 6 997 1210 2024-05-29T23:39:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft carpet commonc.png 6 998 1211 2024-05-29T23:39:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Abstract lamp.png 6 999 1212 2024-05-29T23:39:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft carpet commond.png 6 1000 1213 2024-05-29T23:39:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Abstract neon lamp.png 6 1001 1214 2024-05-29T23:39:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft carpet commone.png 6 1002 1215 2024-05-29T23:39:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Abstract path.png 6 1003 1216 2024-05-29T23:39:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Cotton.png 6 1004 1217 2024-05-29T23:39:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft chair commonc 01.png 6 1005 1218 2024-05-29T23:39:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Block path light.png 6 1006 1219 2024-05-29T23:39:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Feather.png 6 1007 1220 2024-05-29T23:39:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft chair commone 01.png 6 1008 1221 2024-05-29T23:39:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Fine puff puff wool.png 6 1009 1222 2024-05-29T23:39:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Blue floor lamp.png 6 1010 1223 2024-05-29T23:39:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Flutter silk.png 6 1011 1224 2024-05-29T23:39:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft couch commonc.png 6 1012 1225 2024-05-29T23:39:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Deco ground m.png 6 1013 1226 2024-05-29T23:39:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Jute.png 6 1014 1227 2024-05-29T23:39:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft couch commone.png 6 1015 1228 2024-05-29T23:39:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Deco lamp floor cuddles.png 6 1016 1229 2024-05-29T23:39:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Mystic feather.png 6 1017 1230 2024-05-29T23:39:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Door panel.png 6 1018 1231 2024-05-29T23:39:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Puff puff wool.png 6 1019 1232 2024-05-29T23:39:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft dresser commona lg.png 6 1020 1233 2024-05-29T23:39:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Grass path.png 6 1021 1234 2024-05-29T23:39:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Radiated cotton.png 6 1022 1235 2024-05-29T23:39:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft dresser commona med.png 6 1023 1236 2024-05-29T23:39:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Green floor lamp.png 6 1024 1237 2024-05-29T23:39:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Radiated jute.png 6 1025 1238 2024-05-29T23:39:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft dresser commona sm.png 6 1026 1239 2024-05-29T23:39:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Shiny flutter silk.png 6 1027 1240 2024-05-29T23:39:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Hermy's promo marquee ancient artifacts!.png 6 1028 1241 2024-05-29T23:39:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture floor pet rock.png 6 1029 1242 2024-05-29T23:39:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Super cotton.png 6 1030 1243 2024-05-29T23:39:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Ice floor lamp.png 6 1031 1244 2024-05-29T23:39:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture floor pet rock terrarium.png 6 1032 1245 2024-05-29T23:39:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Super jute.png 6 1033 1246 2024-05-29T23:39:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Ice path.png 6 1034 1247 2024-05-29T23:40:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall banner alliance.png 6 1035 1248 2024-05-29T23:40:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Super radiated cotton.png 6 1036 1249 2024-05-29T23:40:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Super radiated jute.png 6 1037 1250 2024-05-29T23:40:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Fiber images]] 338a075537400b7d799efd51b5972413b06072c1 File:Craft fixture wall banner lacy.png 6 1038 1251 2024-05-29T23:40:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Large blank panel.png 6 1039 1252 2024-05-29T23:40:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall banner navy.png 6 1040 1253 2024-05-29T23:40:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Lunar floor lamp.png 6 1041 1254 2024-05-29T23:40:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall banner pink.png 6 1042 1255 2024-05-29T23:40:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Lunar path.png 6 1043 1256 2024-05-29T23:40:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall curtain navy.png 6 1044 1257 2024-05-29T23:40:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Multi-color floor lamp.png 6 1045 1258 2024-05-29T23:40:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall curtain pink.png 6 1046 1259 2024-05-29T23:40:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Ocean path.png 6 1047 1260 2024-05-29T23:40:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall panel blank 01.png 6 1048 1261 2024-05-29T23:40:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Orange floor lamp.png 6 1049 1262 2024-05-29T23:40:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall panel blank 02.png 6 1050 1263 2024-05-29T23:40:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Orange path light.png 6 1051 1264 2024-05-29T23:40:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h red strawberry.png 6 1052 1265 2024-05-29T23:40:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Organic path.png 6 1053 1266 2024-05-29T23:40:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall panel door.png 6 1054 1267 2024-05-29T23:40:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Hair color neon yellow.png 6 1055 1268 2024-05-29T23:40:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Path blue.png 6 1056 1269 2024-05-29T23:40:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall panel screen 01.png 6 1057 1270 2024-05-29T23:40:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Path green.png 6 1058 1271 2024-05-29T23:40:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Hair color rose gold.png 6 1059 1272 2024-05-29T23:40:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft fixture wall panel screen 02.png 6 1060 1273 2024-05-29T23:40:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Hair color sunshine.png 6 1061 1274 2024-05-29T23:40:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Path orange.png 6 1062 1275 2024-05-29T23:40:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Hair color swan.png 6 1063 1276 2024-05-29T23:40:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Path pink.png 6 1064 1277 2024-05-29T23:40:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall panel slot.png 6 1065 1278 2024-05-29T23:40:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Color h black charcoal.png 6 1066 1279 2024-05-29T23:40:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Path purple.png 6 1067 1280 2024-05-29T23:40:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft fixture wall panel vent.png 6 1068 1281 2024-05-29T23:40:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Path red.png 6 1070 1282 2024-05-29T23:40:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h blonde auburn.png 6 1069 1283 2024-05-29T23:40:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Color h blonde golden.png 6 1071 1284 2024-05-29T23:40:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft fixture wall panel wires.png 6 1072 1285 2024-05-29T23:40:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Path simple.png 6 1073 1286 2024-05-29T23:40:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h blonde platinum.png 6 1074 1287 2024-05-29T23:40:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft ground grass.png 6 1075 1288 2024-05-29T23:40:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Path white.png 6 1076 1289 2024-05-29T23:40:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft lamp floor commonc.png 6 1077 1290 2024-05-29T23:40:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Color h blue savoy.png 6 1078 1291 2024-05-29T23:40:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Path yellow.png 6 1079 1292 2024-05-29T23:40:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h brown chestnut.png 6 1080 1293 2024-05-29T23:40:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft lamp floor commond.png 6 1081 1294 2024-05-29T23:40:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Pirate path.png 6 1082 1295 2024-05-29T23:40:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h brown cocoa.png 6 1083 1296 2024-05-29T23:40:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft lamp floor commonh.png 6 1084 1297 2024-05-29T23:40:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Prehistoric path.png 6 1085 1298 2024-05-29T23:40:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft lamp floor commoni.png 6 1086 1299 2024-05-29T23:40:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Color h green kelly.png 6 1087 1300 2024-05-29T23:40:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft lamp tabletop commonb.png 6 1088 1301 2024-05-29T23:40:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Rainbow banner.png 6 1089 1302 2024-05-29T23:40:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h grey shady.png 6 1090 1303 2024-05-29T23:40:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Color h orange tangerine.png 6 1091 1304 2024-05-29T23:40:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft lamp tabletop commonc.png 6 1092 1305 2024-05-29T23:40:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Red path light.png 6 1093 1306 2024-05-29T23:40:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color h pink french.png 6 1094 1307 2024-05-29T23:40:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Slot panel.png 6 1095 1308 2024-05-29T23:40:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft lamp tabletop commond.png 6 1096 1309 2024-05-29T23:40:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Color h purple rebecca.png 6 1097 1310 2024-05-29T23:40:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Small blank panel.png 6 1098 1311 2024-05-29T23:40:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft plant floor cuddles flower.png 6 1099 1312 2024-05-29T23:40:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Color h red burgundy.png 6 1100 1313 2024-05-29T23:40:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Small console panel.png 6 1101 1314 2024-05-29T23:40:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft plant floor pampas.png 6 1102 1315 2024-05-29T23:40:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Soft floor lamp.png 6 1103 1316 2024-05-29T23:40:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Craft stool commonc.png 6 1104 1317 2024-05-29T23:40:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Color pa black onyx.png 6 1105 1318 2024-05-29T23:40:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Hair color ash.png 6 1106 1319 2024-05-29T23:40:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Craft stool commone.png 6 1107 1320 2024-05-29T23:40:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Solid navy curtain.png 6 1108 1321 2024-05-29T23:40:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ice carpet.png 6 1109 1322 2024-05-29T23:40:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ice chair.png 6 1110 1323 2024-05-29T23:40:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ice couch.png 6 1111 1324 2024-05-29T23:40:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Iceladus exploration trophy.png 6 1112 1325 2024-05-29T23:40:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Jute bench.png 6 1113 1326 2024-05-29T23:40:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Jute couch.png 6 1114 1327 2024-05-29T23:40:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Jute rug.png 6 1115 1328 2024-05-29T23:40:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lacy banner.png 6 1116 1329 2024-05-29T23:40:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lava lakes exploration trophy.png 6 1117 1330 2024-05-29T23:40:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar bench.png 6 1118 1331 2024-05-29T23:41:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar block.png 6 1119 1332 2024-05-29T23:41:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar carpet.png 6 1120 1333 2024-05-29T23:41:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar chair.png 6 1121 1334 2024-05-29T23:41:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar couch.png 6 1122 1335 2024-05-29T23:41:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar telescope.png 6 1123 1336 2024-05-29T23:41:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Modern blue bench.png 6 1124 1337 2024-05-29T23:41:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Modern blue couch.png 6 1125 1338 2024-05-29T23:41:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Nickedemus geronimo plush doll.png 6 1126 1339 2024-05-29T23:41:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean bench.png 6 1127 1340 2024-05-29T23:41:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean block.png 6 1128 1341 2024-05-29T23:41:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean chair.png 6 1129 1342 2024-05-29T23:41:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean couch.png 6 1130 1343 2024-05-29T23:41:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean fish pillar.png 6 1131 1344 2024-05-29T23:41:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean pillar.png 6 1132 1345 2024-05-29T23:41:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa blue cadet.png 6 1133 1346 2024-05-29T23:41:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Orange chair.png 6 1134 1347 2024-05-29T23:41:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa brown latte.png 6 1135 1348 2024-05-29T23:41:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Organic bench.png 6 1136 1349 2024-05-29T23:41:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Organic block.png 6 1137 1350 2024-05-29T23:41:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa green basil.png 6 1138 1351 2024-05-29T23:41:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Organic chair.png 6 1139 1352 2024-05-29T23:41:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa grey stone.png 6 1140 1353 2024-05-29T23:41:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Organic couch.png 6 1141 1354 2024-05-29T23:41:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa orange leaves.png 6 1142 1355 2024-05-29T23:41:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Organic rug.png 6 1143 1356 2024-05-29T23:41:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa pink aster.png 6 1144 1357 2024-05-29T23:41:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pet rock block.png 6 1145 1358 2024-05-29T23:41:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa purple rex.png 6 1146 1359 2024-05-29T23:41:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pet rock terrarium.png 6 1147 1360 2024-05-29T23:41:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa red cadet.png 6 1148 1361 2024-05-29T23:41:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pink holo-heart.png 6 1149 1362 2024-05-29T23:41:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa white snow.png 6 1150 1363 2024-05-29T23:41:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pirate bench.png 6 1151 1364 2024-05-29T23:41:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color pa yellow lemon.png 6 1152 1365 2024-05-29T23:41:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pant color almond.png 6 1153 1366 2024-05-29T23:41:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pirate carpet.png 6 1154 1367 2024-05-29T23:41:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color baby pink.png 6 1155 1368 2024-05-29T23:41:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pirate chair.png 6 1156 1369 2024-05-29T23:41:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color canary.png 6 1157 1370 2024-05-29T23:41:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pant color cinnamon.png 6 1158 1371 2024-05-29T23:41:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pirate couch.png 6 1159 1372 2024-05-29T23:41:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color coral.png 6 1160 1373 2024-05-29T23:41:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pirate ship in a bottle.png 6 1161 1374 2024-05-29T23:41:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color forest.png 6 1162 1375 2024-05-29T23:41:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Poppo plush doll.png 6 1163 1376 2024-05-29T23:41:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color fuchsia.png 6 1164 1377 2024-05-29T23:41:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Prehistoric bench.png 6 1165 1378 2024-05-29T23:41:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color lilac.png 6 1166 1379 2024-05-29T23:41:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pant color midnight.png 6 1167 1380 2024-05-29T23:41:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Prehistoric carpet.png 6 1168 1381 2024-05-29T23:41:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric chair.png 6 1169 1382 2024-05-29T23:41:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color mint.png 6 1170 1383 2024-05-29T23:41:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pant color mustard.png 6 1171 1384 2024-05-29T23:41:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Prehistoric couch.png 6 1172 1385 2024-05-29T23:41:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color peach.png 6 1173 1386 2024-05-29T23:41:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pant color rosewood.png 6 1174 1387 2024-05-29T23:42:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Red chair.png 6 1175 1388 2024-05-29T23:42:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color royal purple.png 6 1176 1389 2024-05-29T23:42:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Pant color rust.png 6 1177 1390 2024-05-29T23:42:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Seashell rug.png 6 1178 1391 2024-05-29T23:42:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color sky blue.png 6 1179 1392 2024-05-29T23:42:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Sheep plush doll.png 6 1180 1393 2024-05-29T23:42:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pant color slate.png 6 1181 1394 2024-05-29T23:42:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Paint color images]] 83da61a523e2af8a785074bda341d0383e135f76 File:Shiny bench.png 6 1182 1395 2024-05-29T23:42:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Silk rug.png 6 1183 1396 2024-05-29T23:42:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Solid navy banner.png 6 1184 1397 2024-05-29T23:42:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Solid pink banner.png 6 1185 1398 2024-05-29T23:42:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Space alliance banner.png 6 1186 1399 2024-05-29T23:42:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Space alliance rug.png 6 1187 1400 2024-05-29T23:42:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero bench.png 6 1188 1401 2024-05-29T23:42:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero chair.png 6 1189 1402 2024-05-29T23:42:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero couch.png 6 1190 1403 2024-05-29T23:42:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero cutout.png 6 1191 1404 2024-05-29T23:42:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero rug.png 6 1192 1405 2024-05-29T23:42:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:The friendship day sculpture.png 6 1193 1406 2024-05-29T23:42:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage bench.png 6 1194 1407 2024-05-29T23:42:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage bookcase medium.png 6 1195 1408 2024-05-29T23:42:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage carpet.png 6 1196 1409 2024-05-29T23:42:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage chair.png 6 1197 1410 2024-05-29T23:42:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage couch.png 6 1198 1411 2024-05-29T23:42:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Viridis exploration trophy.png 6 1199 1412 2024-05-29T23:42:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:White chair.png 6 1200 1413 2024-05-29T23:42:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Wool rug.png 6 1201 1414 2024-05-29T23:42:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:3d painting.png 6 1202 1415 2024-05-29T23:42:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Abstract armchair.png 6 1203 1416 2024-05-29T23:42:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Abstract bench.png 6 1204 1417 2024-05-29T23:42:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Abstract shapes painting.png 6 1205 1418 2024-05-29T23:42:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Alien landscapes by steven.png 6 1206 1419 2024-05-29T23:42:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Alliance ship painting.png 6 1207 1420 2024-05-29T23:42:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Basic bench.png 6 1208 1421 2024-05-29T23:42:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Beam note wall decal.png 6 1209 1422 2024-05-29T23:42:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Broken picture.png 6 1210 1423 2024-05-29T23:43:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Classic black armchair.png 6 1211 1424 2024-05-29T23:43:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Classic white armchair.png 6 1212 1425 2024-05-29T23:43:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Color theory painting.png 6 1213 1426 2024-05-29T23:43:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Comfy red armchair.png 6 1214 1427 2024-05-29T23:43:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Cuddles armchair.png 6 1215 1428 2024-05-29T23:43:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Dove wall decal.png 6 1216 1429 2024-05-29T23:43:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Dreamcatcher.png 6 1217 1430 2024-05-29T23:43:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Flower wall decal.png 6 1218 1431 2024-05-29T23:43:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Fluffy heart wall decal.png 6 1219 1432 2024-05-29T23:43:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Green polka dot painting.png 6 1220 1433 2024-05-29T23:43:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Hearts wall decal.png 6 1221 1434 2024-05-29T23:43:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ice armchair.png 6 1222 1435 2024-05-29T23:43:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Jute armchair.png 6 1223 1436 2024-05-29T23:43:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Kitty poster.png 6 1224 1437 2024-05-29T23:43:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Leafy wall decal.png 6 1225 1438 2024-05-29T23:43:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Lunar armchair.png 6 1226 1439 2024-05-29T23:43:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Medical poster.png 6 1227 1440 2024-05-29T23:43:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Modern blue armchair.png 6 1228 1441 2024-05-29T23:43:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Moon wall decal.png 6 1229 1442 2024-05-29T23:43:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Musical poster.png 6 1230 1443 2024-05-29T23:43:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Ocean armchair.png 6 1231 1444 2024-05-29T23:43:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Orange flower painting.png 6 1232 1445 2024-05-29T23:43:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Organic armchair.png 6 1233 1446 2024-05-29T23:43:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Pirate armchair.png 6 1234 1447 2024-05-29T23:43:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Prehistoric armchair.png 6 1235 1448 2024-05-29T23:43:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Purple polka dot painting.png 6 1236 1449 2024-05-29T23:43:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Splatter painting.png 6 1237 1450 2024-05-29T23:43:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Springtime painting.png 6 1238 1451 2024-05-29T23:43:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Sprouting wall decal.png 6 1239 1452 2024-05-29T23:43:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Stars wall decal.png 6 1240 1453 2024-05-29T23:43:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Summer's eve painting.png 6 1241 1454 2024-05-29T23:43:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Sun wall decal.png 6 1242 1455 2024-05-29T23:43:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero armchair.png 6 1243 1456 2024-05-29T23:43:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Teeny alien picture.png 6 1244 1457 2024-05-29T23:43:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Tiny notes wall decal.png 6 1245 1458 2024-05-29T23:43:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Treble clef wall decal.png 6 1246 1459 2024-05-29T23:43:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage armchair.png 6 1247 1460 2024-05-29T23:44:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 Category:Craft images 14 1248 1461 2024-05-29T23:45:07Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 File:Craft table glass coffee.png 6 1249 1462 2024-05-29T23:45:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table glass end.png 6 1250 1463 2024-05-29T23:45:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table glass kitchen.png 6 1251 1464 2024-05-29T23:45:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table glass square.png 6 1252 1465 2024-05-29T23:45:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table traditional coffee.png 6 1253 1466 2024-05-29T23:45:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table traditional end.png 6 1254 1467 2024-05-29T23:45:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table traditional kitchen.png 6 1255 1468 2024-05-29T23:45:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft table traditional square.png 6 1256 1469 2024-05-29T23:45:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Furnace instructions.png 6 1257 1470 2024-05-29T23:46:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:H2o station instructions.png 6 1258 1471 2024-05-29T23:46:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Juicer instructions.png 6 1259 1472 2024-05-29T23:46:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Planter instructions.png 6 1260 1473 2024-05-29T23:46:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Potted desert flower data.png 6 1261 1474 2024-05-29T23:46:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Potted ice flower data.png 6 1262 1475 2024-05-29T23:46:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Potted lava flower data.png 6 1263 1476 2024-05-29T23:46:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Potted ocean flower data.png 6 1264 1477 2024-05-29T23:46:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Potted viridis flower data.png 6 1265 1478 2024-05-29T23:46:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Storage bin instructions.png 6 1266 1479 2024-05-29T23:46:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Tree planter instructions.png 6 1267 1480 2024-05-29T23:46:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Wardrobe data.png 6 1268 1481 2024-05-29T23:46:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft art wall 3d painting.png 6 1269 1482 2024-05-29T23:46:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Craft art wall flower orange painting.png 6 1270 1483 2024-05-29T23:46:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Small xenos pod instructions.png 6 1271 1484 2024-05-29T23:46:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Craft images]] d0f276a4f0e78f75c03348bbadd47a1a34b519e6 File:Auto-feeder bots book.png 6 1272 1485 2024-05-29T23:55:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Desert dunes planet book.png 6 1273 1486 2024-05-29T23:55:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Feeding bins book.png 6 1274 1487 2024-05-29T23:55:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Iceladus cluster book.png 6 1275 1488 2024-05-29T23:55:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Lava lakes planet book.png 6 1276 1489 2024-05-29T23:55:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Neutral microbes book.png 6 1277 1490 2024-05-29T23:55:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Wild microbes book.png 6 1278 1491 2024-05-29T23:55:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Bad microbes book.png 6 1279 1492 2024-05-29T23:55:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Blue reef planet book.png 6 1280 1493 2024-05-29T23:55:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Good microbes book.png 6 1281 1494 2024-05-29T23:55:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Other machines part iii book.png 6 1282 1495 2024-05-29T23:55:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Other machines part iv book.png 6 1283 1496 2024-05-29T23:55:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Other machines part v book.png 6 1284 1497 2024-05-29T23:55:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Outer hull planting book.png 6 1285 1498 2024-05-29T23:55:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Storage bins book.png 6 1286 1499 2024-05-29T23:55:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Trees and you book.png 6 1287 1500 2024-05-29T23:55:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Book images]] 037decedbf7d37d74960868979fc6dbf99ab2264 File:Hair color blush.png 6 1288 1501 2024-05-29T23:56:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color burnt orange.png 6 1289 1502 2024-05-29T23:56:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color cotton candy.png 6 1290 1503 2024-05-29T23:56:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color evergreen.png 6 1291 1504 2024-05-29T23:56:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color fiery red.png 6 1292 1505 2024-05-29T23:56:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color lavender pink.png 6 1293 1506 2024-05-29T23:56:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color lilac.png 6 1294 1507 2024-05-29T23:56:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color midnight.png 6 1295 1508 2024-05-29T23:56:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color mint.png 6 1296 1509 2024-05-29T23:56:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color neon blue.png 6 1297 1510 2024-05-29T23:56:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color neon green.png 6 1298 1511 2024-05-29T23:56:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color neon orange.png 6 1299 1512 2024-05-29T23:56:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color neon pink.png 6 1300 1513 2024-05-29T23:56:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color peach.png 6 1301 1514 2024-05-29T23:56:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color periwinkle.png 6 1302 1515 2024-05-29T23:56:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color plum.png 6 1303 1516 2024-05-29T23:56:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Hair color silver blues.png 6 1304 1517 2024-05-29T23:56:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Hair color images]] 36559c92cb5ada8149a85d65af4a4305a427506d File:Xeno egg.png 6 1305 1518 2024-05-29T23:58:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Clam shell.png 6 1306 1519 2024-05-29T23:59:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Common meteorite.png 6 1307 1520 2024-05-29T23:59:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Conch shell.png 6 1308 1521 2024-05-29T23:59:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Electro plasma.png 6 1309 1522 2024-05-29T23:59:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Lava mushroom.png 6 1310 1523 2024-05-29T23:59:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Minerals.png 6 1311 1524 2024-05-29T23:59:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Pet rock.png 6 1312 1525 2024-05-29T23:59:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Pirate hook.png 6 1313 1526 2024-05-29T23:59:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Plant material.png 6 1314 1527 2024-05-29T23:59:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Rare meteorite.png 6 1315 1528 2024-05-29T23:59:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Recycled parts.png 6 1316 1529 2024-05-29T23:59:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Sand.png 6 1317 1530 2024-05-29T23:59:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Scrap metal.png 6 1318 1531 2024-05-29T23:59:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Scrap metal block.png 6 1319 1532 2024-05-29T23:59:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Silver.png 6 1320 1533 2024-05-29T23:59:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Silver ore.png 6 1321 1534 2024-05-29T23:59:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Snowball.png 6 1322 1535 2024-05-29T23:59:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Soil sample.png 6 1323 1536 2024-05-29T23:59:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Stone.png 6 1324 1537 2024-05-29T23:59:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Stone composite.png 6 1325 1538 2024-05-29T23:59:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Titanium.png 6 1326 1539 2024-05-29T23:59:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Titanium ore.png 6 1327 1540 2024-05-29T23:59:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Tumbleweed.png 6 1328 1541 2024-05-29T23:59:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Viridium.png 6 1329 1542 2024-05-29T23:59:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Viridium ore.png 6 1330 1543 2024-05-29T23:59:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Wires.png 6 1331 1544 2024-05-29T23:59:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Aluminium.png 6 1332 1545 2024-05-29T23:59:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Aluminium ore.png 6 1333 1546 2024-05-29T23:59:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Carbon nano-tubes.png 6 1334 1547 2024-05-29T23:59:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Copper.png 6 1335 1548 2024-05-29T23:59:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Copper ore.png 6 1336 1549 2024-05-29T23:59:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Cosmic jelly.png 6 1337 1550 2024-05-29T23:59:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Dark matter.png 6 444 1551 582 2024-05-29T23:59:58Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Dark matter.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Dark matter fuel.png 6 379 1552 403 2024-05-29T23:59:59Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Dark matter fuel.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Date invitation.png 6 1338 1553 2024-05-30T00:00:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Engagement ring.png 6 1339 1554 2024-05-30T00:00:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Fertilizer.png 6 1340 1555 2024-05-30T00:00:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Fertilizer (bad).png 6 1341 1556 2024-05-30T00:00:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Fertilizer (good).png 6 1342 1557 2024-05-30T00:00:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Fertilizer (wild).png 6 1343 1558 2024-05-30T00:00:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Friendship frog card.png 6 1344 1559 2024-05-30T00:00:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Glass.png 6 1345 1560 2024-05-30T00:00:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Gold.png 6 1346 1561 2024-05-30T00:00:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Gold ore.png 6 1347 1562 2024-05-30T00:00:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Graphite.png 6 1348 1563 2024-05-30T00:00:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Hardened graphite.png 6 1349 1564 2024-05-30T00:00:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Hardware parts.png 6 1350 1565 2024-05-30T00:00:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Ink.png 6 1351 1566 2024-05-30T00:00:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Lucky clover.png 6 1352 1567 2024-05-30T00:00:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Monkey mates card.png 6 1353 1568 2024-05-30T00:00:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Premium ink.png 6 1354 1569 2024-05-30T00:00:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Robot buddy card.png 6 1355 1570 2024-05-30T00:00:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Resource images]] e0e5ef688d86b76e7425fd34b48ebe1f03e618f9 File:Heart sunglasses.png 6 1356 1571 2024-05-30T00:00:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Moon aviator sunglasses.png 6 1357 1572 2024-05-30T00:00:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Snow goggles.png 6 1358 1573 2024-05-30T00:00:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Sunglasses.png 6 1359 1574 2024-05-30T00:00:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:3d glasses.png 6 1360 1575 2024-05-30T00:00:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Alien markings.png 6 1361 1576 2024-05-30T00:00:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Blue earrings.png 6 1362 1577 2024-05-30T00:00:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Cool makeup.png 6 1363 1578 2024-05-30T00:00:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Cyborg monocle.png 6 1364 1579 2024-05-30T00:00:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Cyborg visor.png 6 1365 1580 2024-05-30T00:00:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Eye patch.png 6 1366 1581 2024-05-30T00:00:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Face mask.png 6 1367 1582 2024-05-30T00:00:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Ghost mask.png 6 1368 1583 2024-05-30T00:00:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Glasses.png 6 1369 1584 2024-05-30T00:01:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Hoop earrings.png 6 1370 1585 2024-05-30T00:01:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Jewel headband.png 6 1371 1586 2024-05-30T00:01:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Joke glasses.png 6 1372 1587 2024-05-30T00:01:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Masquerade mask.png 6 1373 1588 2024-05-30T00:01:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Monocle.png 6 1374 1589 2024-05-30T00:01:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Orange alien markings.png 6 1375 1590 2024-05-30T00:01:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Pale makeup.png 6 1376 1591 2024-05-30T00:01:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Pirate alien markings.png 6 1377 1592 2024-05-30T00:01:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Pointy ears.png 6 1378 1593 2024-05-30T00:01:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Rosy makeup.png 6 1379 1594 2024-05-30T00:01:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Round glasses.png 6 1380 1595 2024-05-30T00:01:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Safety glasses.png 6 1381 1596 2024-05-30T00:01:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Scanner.png 6 1382 1597 2024-05-30T00:01:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Accessory images]] 0055d3393ec68e2405088335b74e0814af9d5fb3 File:Pepper seeds.png 6 1383 1598 2024-05-30T00:04:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Pineapple seeds.png 6 1384 1599 2024-05-30T00:04:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Potato seeds.png 6 1385 1600 2024-05-30T00:04:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Pumpkin seeds.png 6 1386 1601 2024-05-30T00:04:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Soybean seeds.png 6 1387 1602 2024-05-30T00:04:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Spinach seeds.png 6 1388 1603 2024-05-30T00:04:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Squash seeds.png 6 412 1604 448 2024-05-30T00:04:27Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Squash seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Strawberry seeds.png 6 1389 1605 2024-05-30T00:04:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Tomato seeds.png 6 1390 1606 2024-05-30T00:04:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Watermelon seeds.png 6 1391 1607 2024-05-30T00:04:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Bean seeds.png 6 370 1608 394 2024-05-30T00:04:33Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Bean seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry seeds.png 6 364 1609 388 2024-05-30T00:04:34Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Blueberry seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Broccoli seeds.png 6 328 1610 352 2024-05-30T00:04:36Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Broccoli seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Carrot seeds.png 6 321 1611 345 2024-05-30T00:04:37Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Carrot seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Corn seeds.png 6 315 1612 339 2024-05-30T00:04:38Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Corn seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cotton seeds.png 6 309 1613 333 2024-05-30T00:04:40Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Cotton seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Cucumber seeds.png 6 301 1614 325 2024-05-30T00:04:41Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Cucumber seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Desert mixed seeds.png 6 1392 1615 2024-05-30T00:04:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Garlic seeds.png 6 296 1616 320 2024-05-30T00:04:44Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Garlic seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ginger seeds.png 6 290 1617 314 2024-05-30T00:04:45Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Ginger seeds.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Grape seeds.png 6 1393 1618 2024-05-30T00:04:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Ice mixed seeds.png 6 1394 1619 2024-05-30T00:04:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Jute seeds.png 6 1395 1620 2024-05-30T00:04:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Lava mixed seeds.png 6 1396 1621 2024-05-30T00:04:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Lettuce seeds.png 6 1397 1622 2024-05-30T00:04:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Ocean mixed seeds.png 6 1398 1623 2024-05-30T00:04:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Onion seeds.png 6 1399 1624 2024-05-30T00:04:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Peanut seeds.png 6 1400 1625 2024-05-30T00:04:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Utopia mixed seeds.png 6 1401 1626 2024-05-30T00:05:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Seed images]] 756ce408811c6ad6b1b26d388605fb55de2ce09b File:Peanut growth 2.png 6 1402 1627 2024-05-30T00:05:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 3.png 6 1403 1628 2024-05-30T00:05:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 4.png 6 1404 1629 2024-05-30T00:05:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 0.png 6 1405 1630 2024-05-30T00:05:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 1.png 6 1406 1631 2024-05-30T00:05:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 2.png 6 1407 1632 2024-05-30T00:05:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 3.png 6 1408 1633 2024-05-30T00:05:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 4.png 6 1409 1634 2024-05-30T00:05:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 0.png 6 1410 1635 2024-05-30T00:05:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 1.png 6 1411 1636 2024-05-30T00:05:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 2.png 6 1412 1637 2024-05-30T00:05:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 3.png 6 1413 1638 2024-05-30T00:05:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 4.png 6 1414 1639 2024-05-30T00:05:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 5.png 6 1415 1640 2024-05-30T00:05:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 0.png 6 1416 1641 2024-05-30T00:05:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 1.png 6 1417 1642 2024-05-30T00:05:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 2.png 6 1418 1643 2024-05-30T00:05:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 3.png 6 1419 1644 2024-05-30T00:05:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 0.png 6 1420 1645 2024-05-30T00:05:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 1.png 6 1421 1646 2024-05-30T00:05:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 2.png 6 1422 1647 2024-05-30T00:06:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 3.png 6 1423 1648 2024-05-30T00:06:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 4.png 6 1424 1649 2024-05-30T00:06:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 0.png 6 1425 1650 2024-05-30T00:06:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 1.png 6 1426 1651 2024-05-30T00:06:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 2.png 6 1427 1652 2024-05-30T00:06:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 3.png 6 1428 1653 2024-05-30T00:06:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 4.png 6 1429 1654 2024-05-30T00:06:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 Stewart 0 1430 1655 2024-05-30T00:06:18Z Tankarmarx 378519 Created page with "{{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren (Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time...." wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren (Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time. Stewart is a human male with short, black hair that recedes at the hairline and has a bald spot at the crown. His fringe swoops at the forehead and is accompanied by thick sideburns. He is always sporting orange safety glasses, denim blue coveralls, a white shirt, light blue gloves, and black shoes. Lastly, he has an official space alliance name badge on his left breast. Stewart's LARP outfit includes dark blue heavy armour, a horned armoured helmet, an axe and shield, and his trusty safety glasses. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Bean Chili Bowl,Chips,Circuit Board,Coffee,Petrified Wood,Starflux Piece |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Carbon Nano-tubes,Electro Plasma,Onion |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Acorn,Alien Sticker Book,Bouquet of Flowers |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Under Construction <!--Stewart has two schedules he follows during a normal week, this schedule is adjusted for holidays and events.--!> <!--{{Schedule |character = Stewart |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters.--!> }} ==Mail== Under Construction! <!-- Email 1 - unlocks Stewart's Glasses Email 2 - {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Observations== ==Gallery== <gallery> Stewart.png|Neutral Stewart portrait angry.png|Angry Stewart portrait confused.png|Confused Stewart portrait happy.png|Happy Stewart portrait sad.png|Sad Stewart portrait stressed.png|Stressed Stewart sprite.png|Sprite portrait crop Stewart.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} f631a8df801d5604d611e06094054270af8c08ba File:Spinach growth 0.png 6 1431 1656 2024-05-30T00:06:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 1.png 6 1432 1657 2024-05-30T00:06:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 2.png 6 1433 1658 2024-05-30T00:06:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 3.png 6 1434 1659 2024-05-30T00:06:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 0.png 6 1435 1660 2024-05-30T00:06:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 1.png 6 1436 1661 2024-05-30T00:06:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 2.png 6 1437 1662 2024-05-30T00:06:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 3.png 6 1438 1663 2024-05-30T00:06:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 0.png 6 1439 1664 2024-05-30T00:06:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 1.png 6 1440 1665 2024-05-30T00:06:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 2.png 6 1441 1666 2024-05-30T00:06:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 3.png 6 1442 1667 2024-05-30T00:06:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 4.png 6 1443 1668 2024-05-30T00:06:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 0.png 6 1444 1669 2024-05-30T00:06:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 1.png 6 1445 1670 2024-05-30T00:06:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 2.png 6 1446 1671 2024-05-30T00:06:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 3.png 6 1447 1672 2024-05-30T00:06:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 4.png 6 1448 1673 2024-05-30T00:06:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 0.png 6 1449 1674 2024-05-30T00:06:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 1.png 6 1450 1675 2024-05-30T00:06:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 2.png 6 1451 1676 2024-05-30T00:06:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 3.png 6 1452 1677 2024-05-30T00:07:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 4.png 6 1453 1678 2024-05-30T00:07:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 0.png 6 1499 1724 2024-05-30T00:08:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 1.png 6 1500 1725 2024-05-30T00:09:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 2.png 6 1501 1726 2024-05-30T00:09:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 3.png 6 1502 1727 2024-05-30T00:09:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 4.png 6 1503 1728 2024-05-30T00:09:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 5.png 6 1504 1729 2024-05-30T00:09:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 0.png 6 1505 1730 2024-05-30T00:09:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 1.png 6 1506 1731 2024-05-30T00:09:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 2.png 6 1507 1732 2024-05-30T00:09:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 3.png 6 1508 1733 2024-05-30T00:09:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 4.png 6 1509 1734 2024-05-30T00:09:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 0.png 6 1510 1735 2024-05-30T00:09:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 1.png 6 1511 1736 2024-05-30T00:09:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 2.png 6 1512 1737 2024-05-30T00:09:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 3.png 6 1513 1738 2024-05-30T00:09:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 0.png 6 1514 1739 2024-05-30T00:09:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 1.png 6 1515 1740 2024-05-30T00:09:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 2.png 6 1516 1741 2024-05-30T00:09:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 3.png 6 1517 1742 2024-05-30T00:09:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 0.png 6 1518 1743 2024-05-30T00:09:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 1.png 6 1519 1744 2024-05-30T00:09:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 Template:NPC infobox/doc 10 531 1745 701 2024-05-30T00:10:02Z Geekette828 51691 wikitext text/x-wiki Infobox for NPCs in the game '''Related Modules, Templates, or Tables:'''<br> *[[Module:Infobox]] *[[Template:NPC infobox/Cargo declare]] - Declares the [[Special:CargoTables/NPCs|NPCs cargo table]] ==Syntax== <syntaxhighlight lang="wikitext"> {{NPC infobox <!-- These items are only needed if override from default is appropriate. --> |name = NPC name (default is PAGENAME) |image = Image name.png (default is PAGENAME.png) <!-- Character Information --> |romanceable = 1 for yes, 0 for no (Boolean) |race = Race of the NPC. (plain text string) |birthday = Birthday of the NPC, should be in: Q0#-## format. (plain text string) |gender = Gender of the NPC. (plain text string) |occupation = Occupation of the NPC. (plain text string) |relationships = Names of other NPCs and their relationships with them. Use ";" to separate names. Use » after a name to note the relationship. (plain text string) |location = Ship or Name of Planet (plain text string) |quarters = Name of their quarters. (plain text string) }}</syntaxhighlight> ==Examples== {{NPC infobox |name = Lin |image = Lin.png |romanceable = 1 <!-- Character Information --> |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} <pre> {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} </pre>{{Clear}} <noinclude>[[Category:Template documentation]]</noinclude> 8e552f7f83e114d2aa53dc55226c8bd29b512485 Stewart 0 1430 1746 1655 2024-05-30T00:10:41Z Geekette828 51691 tweak to the relationships. wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren»(Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time. Stewart is a human male with short, black hair that recedes at the hairline and has a bald spot at the crown. His fringe swoops at the forehead and is accompanied by thick sideburns. He is always sporting orange safety glasses, denim blue coveralls, a white shirt, light blue gloves, and black shoes. Lastly, he has an official space alliance name badge on his left breast. Stewart's LARP outfit includes dark blue heavy armour, a horned armoured helmet, an axe and shield, and his trusty safety glasses. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Bean Chili Bowl,Chips,Circuit Board,Coffee,Petrified Wood,Starflux Piece |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Carbon Nano-tubes,Electro Plasma,Onion |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Acorn,Alien Sticker Book,Bouquet of Flowers |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Under Construction <!--Stewart has two schedules he follows during a normal week, this schedule is adjusted for holidays and events.--!> <!--{{Schedule |character = Stewart |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters.--!> }} ==Mail== Under Construction! <!-- Email 1 - unlocks Stewart's Glasses Email 2 - {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Observations== ==Gallery== <gallery> Stewart.png|Neutral Stewart portrait angry.png|Angry Stewart portrait confused.png|Confused Stewart portrait happy.png|Happy Stewart portrait sad.png|Sad Stewart portrait stressed.png|Stressed Stewart sprite.png|Sprite portrait crop Stewart.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} 60fdc65c20bfbc0745e1bfbf4b43827fecea7504 File:Fruit wine.png 6 1520 1747 2024-05-30T00:16:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Green smoothie.png 6 1521 1748 2024-05-30T00:16:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Interstellar burger.png 6 1522 1749 2024-05-30T00:16:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Potato.png 6 1523 1750 2024-05-30T00:16:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pumpkin.png 6 1524 1751 2024-05-30T00:16:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated fruit wine.png 6 1525 1752 2024-05-30T00:16:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated green smoothie.png 6 1526 1753 2024-05-30T00:17:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated potato.png 6 1527 1754 2024-05-30T00:17:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated pumpkin.png 6 1528 1755 2024-05-30T00:17:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated soy milk.png 6 1529 1756 2024-05-30T00:17:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated soybeans.png 6 1530 1757 2024-05-30T00:17:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated spinach.png 6 1531 1758 2024-05-30T00:17:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated squash.png 6 1532 1759 2024-05-30T00:17:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated strawberry.png 6 1533 1760 2024-05-30T00:17:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated tomato.png 6 1534 1761 2024-05-30T00:17:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated vegetable juice.png 6 1535 1762 2024-05-30T00:17:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated watermelon.png 6 1536 1763 2024-05-30T00:17:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated wine.png 6 1537 1764 2024-05-30T00:17:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Ramen bowl.png 6 1538 1765 2024-05-30T00:17:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Red bean bun.png 6 1539 1766 2024-05-30T00:17:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Seaside sushi.png 6 1540 1767 2024-05-30T00:17:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Seaweed.png 6 1541 1768 2024-05-30T00:17:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Soy milk.png 6 1542 1769 2024-05-30T00:17:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Soybeans.png 6 1543 1770 2024-05-30T00:17:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Spiced pumpkin soup.png 6 1544 1771 2024-05-30T00:17:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Spinach.png 6 1545 1772 2024-05-30T00:17:32Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Squash.png 6 1546 1773 2024-05-30T00:17:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Squash ravioli.png 6 1547 1774 2024-05-30T00:17:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Strawberry.png 6 1548 1775 2024-05-30T00:17:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Stuffed peppers.png 6 1549 1776 2024-05-30T00:17:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Sugar cookie.png 6 1550 1777 2024-05-30T00:17:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super fruit wine.png 6 1551 1778 2024-05-30T00:17:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super green smoothie.png 6 1552 1779 2024-05-30T00:17:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super pineapple.png 6 1553 1780 2024-05-30T00:17:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super potato.png 6 1554 1781 2024-05-30T00:17:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa Stewart 0 1430 1782 1746 2024-05-30T00:17:47Z Geekette828 51691 fixed names of items wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren»(Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time. Stewart is a human male with short, black hair that recedes at the hairline and has a bald spot at the crown. His fringe swoops at the forehead and is accompanied by thick sideburns. He is always sporting orange safety glasses, denim blue coveralls, a white shirt, light blue gloves, and black shoes. Lastly, he has an official space alliance name badge on his left breast. Stewart's LARP outfit includes dark blue heavy armour, a horned armoured helmet, an axe and shield, and his trusty safety glasses. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Bean chili bowl,Chips,Circuit board,Coffee,Petrified wood,Starflux piece |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Carbon Nano-tubes,Electro plasma,Onion |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Acorn,Alien sticker book,Bouquet of flowers |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Under Construction <!--Stewart has two schedules he follows during a normal week, this schedule is adjusted for holidays and events.--!> <!--{{Schedule |character = Stewart |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters.--!> }} ==Mail== Under Construction! <!-- Email 1 - unlocks Stewart's Glasses Email 2 - {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Observations== ==Gallery== <gallery> Stewart.png|Neutral Stewart portrait angry.png|Angry Stewart portrait confused.png|Confused Stewart portrait happy.png|Happy Stewart portrait sad.png|Sad Stewart portrait stressed.png|Stressed Stewart sprite.png|Sprite portrait crop Stewart.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} b5cb461071b46ef82dc47a9606eebff5d5ab2c99 File:Super pumpkin.png 6 1555 1783 2024-05-30T00:17:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated fruit wine.png 6 1556 1784 2024-05-30T00:17:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated green smoothie.png 6 1557 1785 2024-05-30T00:17:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated pineapple.png 6 1558 1786 2024-05-30T00:17:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated potato.png 6 1559 1787 2024-05-30T00:17:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated pumpkin.png 6 1560 1788 2024-05-30T00:17:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated soy milk.png 6 1561 1789 2024-05-30T00:17:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated soybeans.png 6 1562 1790 2024-05-30T00:17:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated spinach.png 6 1563 1791 2024-05-30T00:17:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated squash.png 6 1564 1792 2024-05-30T00:18:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated strawberry.png 6 1565 1793 2024-05-30T00:18:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated tomato.png 6 1566 1794 2024-05-30T00:18:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated vegetable juice.png 6 1567 1795 2024-05-30T00:18:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated watermelon.png 6 1568 1796 2024-05-30T00:18:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated wine.png 6 1569 1797 2024-05-30T00:18:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super soy milk.png 6 1570 1798 2024-05-30T00:18:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super soybeans.png 6 1571 1799 2024-05-30T00:18:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super spinach.png 6 1572 1800 2024-05-30T00:18:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super squash.png 6 1573 1801 2024-05-30T00:18:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super strawberry.png 6 1574 1802 2024-05-30T00:18:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super tomato.png 6 1575 1803 2024-05-30T00:18:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super vegetable juice.png 6 1576 1804 2024-05-30T00:18:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super watermelon.png 6 1577 1805 2024-05-30T00:18:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super wine.png 6 1578 1806 2024-05-30T00:18:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Tamale pie.png 6 1579 1807 2024-05-30T00:18:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Tomato.png 6 1580 1808 2024-05-30T00:18:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Tomato soup.png 6 1581 1809 2024-05-30T00:18:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Vegetable juice.png 6 1582 1810 2024-05-30T00:18:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Watermelon.png 6 1583 1811 2024-05-30T00:18:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Wine.png 6 1584 1812 2024-05-30T00:18:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Dried fruit.png 6 1585 1813 2024-05-30T00:18:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Dried veggies.png 6 1586 1814 2024-05-30T00:18:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Earl grey tea.png 6 1587 1815 2024-05-30T00:18:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Edamame.png 6 1588 1816 2024-05-30T00:18:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Flaming orange.png 6 1589 1817 2024-05-30T00:18:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Food rations.png 6 1590 1818 2024-05-30T00:18:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa Piper 0 510 1819 735 2024-05-30T00:18:39Z Geekette828 51691 fixed gift item names wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q01-10 |gender = Female |occupation = Retired {{verify}} |relationships = |location = Ship |quarters = }} '''Piper''' is .... information on Piper's personality, quirks, various information gleaned from conversations should go here. Information on what Piper looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Earl grey tea,Cucumber,Cherry tart,Fruit jam,Fruit wine,Ruby,Viridis post card |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Conch shell |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Chips, Bigfoot photo |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Recycled parts, Cosmic jelly, Carbon nano-tubes |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Piper has two schedules she follows during a normal week, this schedule is adjusted for holidays and events. {{Schedule |character = Piper |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters. }} ==Mail== Coming Soon! <!-- Email 1 - email_88 -- unlocks print_deco_fixture_floor_flamingo -- attach deco_fixture_floor_flamingo x3 Email 2 - email_89 -- attach Friendship Cake Recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Piper.png|Neutral Piper portrait angry.png|Angry Piper portrait confused.png|Confused Piper portrait happy.png|Happy Piper portrait sad.png|Sad Piper portrait stressed.png|Stressed Piper sprite.png|Sprite portrait crop Piper.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} 4e3e50546ff53b34bf545ec78c2a5e6753b646c7 File:Forager's bar.png 6 1591 1820 2024-05-30T00:18:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Forager's juice.png 6 1592 1821 2024-05-30T00:18:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Forager's preserves.png 6 1593 1822 2024-05-30T00:18:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Friendship cake.png 6 1594 1823 2024-05-30T00:18:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Fruit bar.png 6 1595 1824 2024-05-30T00:18:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Fruit jam.png 6 1596 1825 2024-05-30T00:18:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Fruit juice.png 6 1597 1826 2024-05-30T00:18:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Fruit salad.png 6 1598 1827 2024-05-30T00:18:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Garlic.png 6 1599 1828 2024-05-30T00:18:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Ginger.png 6 1600 1829 2024-05-30T00:18:56Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Ginger sticky rice.png 6 1601 1830 2024-05-30T00:18:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Grapes.png 6 1602 1831 2024-05-30T00:19:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Ice cream.png 6 381 1832 405 2024-05-30T00:19:01Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Ice cream.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Ice pop.png 6 1603 1833 2024-05-30T00:19:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Lettuce.png 6 1604 1834 2024-05-30T00:19:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Life spark.png 6 1605 1835 2024-05-30T00:19:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Mashed potatoes.png 6 1606 1836 2024-05-30T00:19:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Nectar.png 6 1607 1837 2024-05-30T00:19:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Noodles.png 6 1608 1838 2024-05-30T00:19:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Onion.png 6 1609 1839 2024-05-30T00:19:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pad thai.png 6 1610 1840 2024-05-30T00:19:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pancakes.png 6 1611 1841 2024-05-30T00:19:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pasta sauce.png 6 1612 1842 2024-05-30T00:19:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Peanut butter.png 6 1613 1843 2024-05-30T00:19:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Peanut butter & pickle sandwich.png 6 1614 1844 2024-05-30T00:19:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Peanuts.png 6 1615 1845 2024-05-30T00:19:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pepper.png 6 1616 1846 2024-05-30T00:19:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pickles.png 6 1617 1847 2024-05-30T00:19:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pineapple.png 6 1618 1848 2024-05-30T00:19:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Pineapple fried rice.png 6 1619 1849 2024-05-30T00:19:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated dried fruit.png 6 1620 1850 2024-05-30T00:19:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated dried veggies.png 6 1621 1851 2024-05-30T00:19:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated flaming orange.png 6 1622 1852 2024-05-30T00:19:36Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated fruit jam.png 6 1623 1853 2024-05-30T00:19:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated fruit juice.png 6 1624 1854 2024-05-30T00:19:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated garlic.png 6 1625 1855 2024-05-30T00:19:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated ginger.png 6 1626 1856 2024-05-30T00:19:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated grapes.png 6 1627 1857 2024-05-30T00:19:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated ice cream.png 6 1628 1858 2024-05-30T00:19:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated ice pop.png 6 1629 1859 2024-05-30T00:19:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated lettuce.png 6 1630 1860 2024-05-30T00:19:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated onion.png 6 1631 1861 2024-05-30T00:19:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated pasta sauce.png 6 1632 1862 2024-05-30T00:19:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated peanut butter.png 6 1633 1863 2024-05-30T00:19:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated peanuts.png 6 1634 1864 2024-05-30T00:19:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated pepper.png 6 1635 1865 2024-05-30T00:19:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated pickles.png 6 1636 1866 2024-05-30T00:19:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated pineapple.png 6 1637 1867 2024-05-30T00:20:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Royal nectar.png 6 1638 1868 2024-05-30T00:20:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Space radish.png 6 1639 1869 2024-05-30T00:20:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super dried berries.png 6 1640 1870 2024-05-30T00:20:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super dried fruit.png 6 1641 1871 2024-05-30T00:20:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super dried veggies.png 6 1642 1872 2024-05-30T00:20:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super flaming orange.png 6 1643 1873 2024-05-30T00:20:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super fruit jam.png 6 1644 1874 2024-05-30T00:20:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super fruit juice.png 6 1645 1875 2024-05-30T00:20:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super garlic.png 6 1646 1876 2024-05-30T00:20:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super ginger.png 6 1647 1877 2024-05-30T00:20:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super grapes.png 6 1648 1878 2024-05-30T00:20:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super ice cream.png 6 1649 1879 2024-05-30T00:20:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super ice pop.png 6 1650 1880 2024-05-30T00:20:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super lettuce.png 6 1651 1881 2024-05-30T00:20:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super onion.png 6 1652 1882 2024-05-30T00:20:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super pasta sauce.png 6 1653 1883 2024-05-30T00:20:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super peanut butter.png 6 1654 1884 2024-05-30T00:20:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super peanuts.png 6 1655 1885 2024-05-30T00:20:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super pepper.png 6 1656 1886 2024-05-30T00:20:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super pickles.png 6 1657 1887 2024-05-30T00:20:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated dried berries.png 6 1658 1888 2024-05-30T00:20:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated dried fruit.png 6 1659 1889 2024-05-30T00:20:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated dried veggies.png 6 1660 1890 2024-05-30T00:20:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated flaming orange.png 6 1661 1891 2024-05-30T00:20:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated fruit jam.png 6 1662 1892 2024-05-30T00:20:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated fruit juice.png 6 1663 1893 2024-05-30T00:20:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated garlic.png 6 1664 1894 2024-05-30T00:20:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated ginger.png 6 1665 1895 2024-05-30T00:20:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated grapes.png 6 1666 1896 2024-05-30T00:20:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa Lin 0 509 1898 734 2024-05-30T00:20:53Z Geekette828 51691 wikitext text/x-wiki {{NPC infobox |romanceable = 1 |race = Human |birthday = Q01-17 |gender = Female |occupation = Jr. Botanist |relationships = |location = Ship |quarters = }} Lin is the ships jr. botanist. .... information on Lin's personality, quirks, various information gleaned from conversations should go here. Information on what Lin looks like should go here. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Chai tea,Ginger,Ginger sticky rice,Moss drop,Alien farm tool,Soil bacteria,Green smoothie |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Lucky clover,Lettuce,Tree planter,Planter |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = Soil sample, Circuit board |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]]<br>[[:Category:Fertilizers|Fertilizers]] |dislike = Electro plasma |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== Coming soon! <!-- {{Gifts for the player| ItemName:HowToObtain, ItemName:HowToObtain}}--> ==Schedule== Lin has two schedules she follows during a normal week, and these differ if she is married to the player or not. Her schedule is adjusted for holidays and events. {{Schedule |character = Lin |1_name = Regular |1_1_time = 5:00 |1_1_info = In personal quarters. |1_2_time = 9:15 |1_2_info = Tending to plants on the recreation deck. |1_3_time = 16:30 |1_3_info = Arrives on the viewing deck. |1_4_time = 21:15 |1_4_info = Arrives on the recreation deck. |1_5_time = 21:30 |1_5_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 5:00 |2_1_info = In personal quarters. |2_2_time = 8:30 |2_2_info = Arrives on the recreation deck. |2_3_time = 9:00 |2_3_info = Enters the stairwell. |2_4_time = 9:15 |2_4_info = Arrives on plaza deck. |2_5_time = 9:45 |2_5_info = Enters the general store. |2_6_time = 14:00 |2_6_info = Leaves general store, returns to the plaza. |2_7_time = 20:45 |2_7_info = Arrives on the recreation deck. |2_8_time = 21:00 |2_8_info = Arrives back in personal quarters. |3_name = Married Regular |3_1_time = 6:00 |3_1_info = In the captains quarters. |3_2_time = 10:00 |3_2_info = Leaves the house, is on the captains deck. |3_3_time = 10:15 |3_3_info = Arrives on the bridge. |3_4_time = 10:30 |3_4_info = Arrives on the recreation deck. |3_5_time = 16:15 |3_5_info = Arrives on the bridge. |3_6_time = 16:50 |3_6_info = Arrives on the captains deck. |4_name = Married Alternate |4_1_time = 6:00 |4_1_info = In the captains quarters. |4_2_time = 12:00 |4_2_info = Leaves the house, is on the captains deck. |4_3_time = 12:15 |4_3_info = Arrives on the bridge. |4_4_time = 12:30 |4_4_info = Arrives on plaza deck. |4_5_time = 13:00 |4_5_info = Enters the general store. |4_6_time = 14:15 |4_6_info = Leaves general store, returns to the plaza. |4_7_time = 18:15 |4_7_info = Arrives on the bridge. |4_8_time = 18:130 |4_8_info = Arrives on the captains deck. }} ==Mail== Coming Soon! <!-- Email 1 - email_80 -- attach Apple tree seeds x1 Email 2 - email_81 -- attach Tamale pie recipe {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Gallery== <gallery> Lin.png|Neutral Lin portrait angry.png|Angry Lin portrait confused.png|Confused Lin portrait happy.png|Happy Lin portrait sad.png|Sad Lin portrait stressed.png|Stressed Lin portrait romanced.png|Romanced Lin sprite.png|Sprite Lin wedding sprite.png|Wedding sprite portrait crop Lin.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|rnpc}} b7616242107d4d9c0ae43ddb0fde82b440f8292a File:Super radiated ice cream.png 6 1667 1897 2024-05-30T00:20:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated ice pop.png 6 1668 1899 2024-05-30T00:20:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated lettuce.png 6 1669 1900 2024-05-30T00:21:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated onion.png 6 1670 1901 2024-05-30T00:21:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated pasta sauce.png 6 1671 1902 2024-05-30T00:21:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated peanut butter.png 6 1672 1903 2024-05-30T00:21:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated peanuts.png 6 1673 1904 2024-05-30T00:21:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated pepper.png 6 1674 1905 2024-05-30T00:21:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated pickles.png 6 1675 1906 2024-05-30T00:21:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:A.v.o..png 6 1676 1907 2024-05-30T00:21:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Acorn.png 6 1677 1908 2024-05-30T00:21:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Applesauce.png 6 1678 1909 2024-05-30T00:21:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Atom apple.png 6 1679 1910 2024-05-30T00:21:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Autumn salad.png 6 1680 1911 2024-05-30T00:21:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Avocado toast.png 6 1681 1912 2024-05-30T00:21:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Bean chili bowl.png 6 1682 1913 2024-05-30T00:21:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Beans.png 6 1683 1914 2024-05-30T00:21:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Berry jam.png 6 1684 1915 2024-05-30T00:21:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Berry juice.png 6 1685 1916 2024-05-30T00:21:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Berry pop.png 6 1686 1917 2024-05-30T00:21:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Blueberries.png 6 210 1918 233 2024-05-30T00:21:31Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Blueberries.png]] wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Blueberry muffin.png 6 302 1919 326 2024-05-30T00:21:32Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Blueberry muffin.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Bread.png 6 1687 1920 2024-05-30T00:21:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Broccoli.png 6 1688 1921 2024-05-30T00:21:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Cactonut.png 6 1689 1922 2024-05-30T00:21:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Cactus fruit.png 6 1690 1923 2024-05-30T00:21:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Canned veggies.png 6 1691 1924 2024-05-30T00:21:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Carrot.png 6 1692 1925 2024-05-30T00:21:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Carrot cake.png 6 383 1926 407 2024-05-30T00:21:43Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Carrot cake.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Chai tea.png 6 1693 1927 2024-05-30T00:21:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Cherry tart.png 6 1694 1928 2024-05-30T00:21:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Cherrysicle.png 6 1695 1929 2024-05-30T00:21:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Chips.png 6 1696 1930 2024-05-30T00:21:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Chocolate banana.png 6 1697 1931 2024-05-30T00:21:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Chocolate bar.png 6 1698 1932 2024-05-30T00:21:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Chocolate cake.png 6 1699 1933 2024-05-30T00:21:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Chocolate orange scones.png 6 1700 1934 2024-05-30T00:21:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Chopped salad.png 6 382 1935 406 2024-05-30T00:21:56Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Chopped salad.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Coffee.png 6 1701 1936 2024-05-30T00:21:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Corn.png 6 1702 1937 2024-05-30T00:21:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Cucumber.png 6 1703 1938 2024-05-30T00:22:00Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Dried berries.png 6 1704 1939 2024-05-30T00:22:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Flat white coffee.png 6 1705 1940 2024-05-30T00:22:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Neptunian ale.png 6 1706 1941 2024-05-30T00:22:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Ocean banana.png 6 1707 1942 2024-05-30T00:22:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated a.v.o..png 6 1708 1943 2024-05-30T00:22:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated applesauce.png 6 1709 1944 2024-05-30T00:22:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated atom apple.png 6 1710 1945 2024-05-30T00:22:12Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated beans.png 6 1711 1946 2024-05-30T00:22:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated berry jam.png 6 1712 1947 2024-05-30T00:22:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated berry juice.png 6 1713 1948 2024-05-30T00:22:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated berry pop.png 6 1714 1949 2024-05-30T00:22:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated blueberries.png 6 303 1950 327 2024-05-30T00:22:21Z Geekette828 51691 Geekette828 uploaded a new version of [[File:Radiated blueberries.png]] wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Radiated broccoli.png 6 1715 1951 2024-05-30T00:22:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated cactonut.png 6 1716 1952 2024-05-30T00:22:25Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated canned veggies.png 6 1717 1953 2024-05-30T00:22:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated carrot.png 6 1718 1954 2024-05-30T00:22:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated cherrysicle.png 6 1719 1955 2024-05-30T00:22:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated chips.png 6 1720 1956 2024-05-30T00:22:31Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated corn.png 6 1721 1957 2024-05-30T00:22:33Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated cucumber.png 6 1722 1958 2024-05-30T00:22:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated dried berries.png 6 1723 1959 2024-05-30T00:22:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Radiated ocean banana.png 6 1724 1960 2024-05-30T00:22:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super a.v.o..png 6 1725 1961 2024-05-30T00:22:41Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super applesauce.png 6 1726 1962 2024-05-30T00:22:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super atom apple.png 6 1727 1963 2024-05-30T00:22:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super beans.png 6 1728 1964 2024-05-30T00:22:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super berry jam.png 6 1729 1965 2024-05-30T00:22:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super berry juice.png 6 1730 1966 2024-05-30T00:22:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super berry pop.png 6 1731 1967 2024-05-30T00:22:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super blueberries.png 6 1732 1968 2024-05-30T00:22:53Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super broccoli.png 6 1733 1969 2024-05-30T00:22:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super cactonut.png 6 1734 1970 2024-05-30T00:22:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super canned veggies.png 6 1735 1971 2024-05-30T00:22:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super carrot.png 6 1736 1972 2024-05-30T00:23:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super cherrysicle.png 6 1737 1973 2024-05-30T00:23:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super chips.png 6 1738 1974 2024-05-30T00:23:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super corn.png 6 1739 1975 2024-05-30T00:23:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super cucumber.png 6 1740 1976 2024-05-30T00:23:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super ocean banana.png 6 1741 1977 2024-05-30T00:23:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated a.v.o..png 6 1742 1978 2024-05-30T00:23:09Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated applesauce.png 6 1743 1979 2024-05-30T00:23:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated atom apple.png 6 1744 1980 2024-05-30T00:23:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated beans.png 6 1745 1981 2024-05-30T00:23:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated berry jam.png 6 1746 1982 2024-05-30T00:23:14Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated berry juice.png 6 1747 1983 2024-05-30T00:23:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated berry pop.png 6 1748 1984 2024-05-30T00:23:16Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated blueberries.png 6 1749 1985 2024-05-30T00:23:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated broccoli.png 6 1750 1986 2024-05-30T00:23:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated cactonut.png 6 1751 1987 2024-05-30T00:23:20Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated canned veggies.png 6 1752 1988 2024-05-30T00:23:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated carrot.png 6 1753 1989 2024-05-30T00:23:22Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated cherrysicle.png 6 1754 1990 2024-05-30T00:23:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated chips.png 6 1755 1991 2024-05-30T00:23:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated corn.png 6 1756 1992 2024-05-30T00:23:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated cucumber.png 6 1757 1993 2024-05-30T00:23:27Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa File:Super radiated ocean banana.png 6 1758 1994 2024-05-30T00:23:28Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Food images]] 61498e250f63e21342b1c544148d383dd92fa8aa Blueberries 0 481 1995 608 2024-05-30T00:24:48Z Geekette828 51691 wikitext text/x-wiki {{Consumable infobox |sellValue = 17 |sellSuper = 24 <!-- Item Data --> |itemType = Crop |seed = Blueberry seeds |energyGain = 17 |healthGain = 9 |energyGainS = 24 |healthGainS = 12 }} Blueberries are grown from {{icon|Blueberry seeds}}, and take '''ten days''' to grow. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|crops}} 99598e85e6f5c9c42e7292cffadd64498383b7bd Blueberry seeds 0 442 1996 607 2024-05-30T00:25:07Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Blueberry growth 0.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} f5aabeefac87c4f1eb8d7c99c980451aa3d60fa8 Dark matter fuel 0 385 1997 689 2024-05-30T00:25:47Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=10 |sellSuper= |itemType=Fuel }} A summary about what dark matter fuel is, and what its used for should go here! ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe|produces=Dark matter fuel |machine=Dark matter refiner |ingredients=Dark matter*10 |time=8hr |id=1}} {{Recipe|produces=Dark matter fuel |machine=Advanced dark matter refiner |ingredients=Dark matter*10 |time=6hr |id=2}} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== The player is gifted this item from: *{{icon|Soot}} ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== ec8f7757547411d1578b89044410fb38fc55c3b5 Dark matter 0 491 1998 690 2024-05-30T00:26:19Z Geekette828 51691 wikitext text/x-wiki {{Item infobox |sellValue=1 |sellSuper= |itemType= }} A summary about what dark matter is, and what its used for should go here! ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = |dislike = universal }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== afb76a2ffdcbbbc5de34bbdf79b791339c418635 Blueberry muffin 0 488 1999 573 2024-05-30T00:27:10Z Geekette828 51691 wikitext text/x-wiki {{Consumable infobox |sellValue = 135 |sellSuper = <!-- Item Data --> |itemType = Food |energyGain = 75 |healthGain = 38 |energyGainS = |healthGainS = }} '''Blueberry muffins''' are a crafted food item the player can prepare in their kitchen. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/header}} {{Recipe |machine = Kitchen |ingredients = blueberries*2;sugar*1;flour*1 |time = instant |yield = 1 |recipeSource = |id = 1 }} {{Recipe/footer}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Food navbox}} edc4ca04ca8574af440bc058c9cf9b2ebe0826ce Category:Food 14 1759 2000 2024-05-30T00:27:43Z Geekette828 51691 Created page with "[[Category:Items]]" wikitext text/x-wiki [[Category:Items]] 8bd3beebb2826830a9eade77bf73f03d8286ea27 Category:Furniture images 14 1760 2001 2024-05-30T00:28:15Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Paint color images 14 1761 2002 2024-05-30T00:28:54Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Microbe images 14 1762 2003 2024-05-30T00:28:56Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Gem images 14 1763 2004 2024-05-30T00:28:59Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Artifact images 14 1764 2005 2024-05-30T00:29:02Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Hat images 14 1765 2006 2024-05-30T00:29:05Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Recipe images 14 1766 2007 2024-05-30T00:29:09Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Hair style images 14 1767 2008 2024-05-30T00:29:12Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Hair color images 14 1768 2009 2024-05-30T00:29:16Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Resource images 14 1769 2010 2024-05-30T00:29:18Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Plant growth stage images 14 1770 2011 2024-05-30T00:29:21Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Accessory images 14 1771 2012 2024-05-30T00:29:33Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Workbench images 14 1772 2013 2024-05-30T00:29:37Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Seed images 14 1773 2014 2024-05-30T00:29:40Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Wall texture images 14 1774 2015 2024-05-30T00:29:43Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Storage furniture images 14 1775 2016 2024-05-30T00:29:46Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Book images 14 1776 2017 2024-05-30T00:29:48Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Facial hair images 14 1777 2018 2024-05-30T00:29:51Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Fiber images 14 1778 2019 2024-05-30T00:29:54Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Food ingredient images 14 1779 2020 2024-05-30T00:29:58Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Floor texture images 14 1780 2021 2024-05-30T00:30:01Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:3D schematic images 14 1781 2022 2024-05-30T00:30:12Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Flower images 14 1782 2023 2024-05-30T00:30:15Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Medicine images 14 1783 2024 2024-05-30T00:30:18Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Trash images 14 1784 2025 2024-05-30T00:30:21Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Tool images 14 1785 2026 2024-05-30T00:30:27Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Category:Food images 14 1786 2027 2024-05-30T00:30:44Z Geekette828 51691 Created page with "[[Category:Images]]" wikitext text/x-wiki [[Category:Images]] 8820b63e35aedd9d2666fe40b965d4e91ce0a106 Template:Item infobox 10 209 2028 688 2024-05-30T00:40:59Z Geekette828 51691 Update to categories wikitext text/x-wiki <includeonly>{{#invoke:Infobox|main | kind = item | sep = <!-- Separator, used to separate images--> | image = {{#if:{{{image|}}}|[[File:{{{image}}}{{!}}300px]]|[[File:{{{name|{{PAGENAME}}}}}.png{{!}}300px]] }} | sections = Item Information, Merchant Information |Item Information=Item Type, Energy Gain, Health Gain |Merchant Information=Sell,Buy |Item Type={{{itemType|}}} |Energy Gain = {{#if: {{{energyGain|}}} |{{icon|energy|notext=true|size=20}} +{{{energyGain|}}}{{#if:{{{energyGainS|}}} |<!-- if this item has a "super" and the player can gain energy from that--><br>{{icon|super item|notext=true|size=20}}{{icon|energy|notext=true|size=20}} +{{{energyGainS|}}} |<!-- If energy gain is false-->}} |<!-- if this item does not have a "super" energy gain -->}} |Health Gain = {{#if: {{{healthGain|}}} |{{icon|health|notext=true|size=20}} +{{{healthGain|}}}{{#if:{{{healthGainS|}}} |<!-- if this item has a "super" and the player can gain health from that--><br>{{icon|super item|notext=true|size=20}}{{icon|health|notext=true|size=20}} +{{{healthGainS|}}} |<!-- if this item does not have a "super" health gain -->}} |<!-- If health gain is false-->}} |Sell = {{{sellValue|}}}{{credits}}{{#if:{{{sellSuper|}}}|<br>{{icon|super item|notext=true|size=20}}{{{sellSuper|}}}{{credits}}|}} }}{{#ifeq: {{NAMESPACENUMBER}} | 0 |<!-- Setting the cargo store for common information of items--> {{#cargo_store:_table=Items |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |sellValue={{{sellValue|}}} |sellSuper={{{sellSuper|}}} |itemType={{{itemType|}}} }}<!-- Setting the cargo store for restoration amounts-->{{#if:{{{energyGain|}}} |<!-- If energyGain is true store the data-->{{#cargo_store:_table=Items_restoration |name={{#if: {{{name|}}} | {{#titleparts:{{{name|}}}}} | {{#titleparts:{{PAGENAME}}}} }} |energyGain={{{energyGain|}}} |healthGain={{{healthGain|}}} |energyGainS={{{energyGainS|}}} |healthGainS={{{healthGainS|}}} }}|<!-- If energyGain is false do not-->}}<!-- Setting classification categories based on itemType-->{{#switch:{{lc:{{{itemType|}}}}} |artifact = [[Category:Artifacts]] |book = [[Category:Books]] |craft = [[Category:Crafts]] |clothing = [[Category:Clothing]] {{#switch:{{lc:{{{category|}}}}} |accessory = [[Category:Accessories]] |hat =[[Category:Hats]] |pants =[[Category:Pants]] |shirt = [[Category:Shirts]]}} |fertilizer = [[Category:Fertilizers]] |fiber = [[Category:Fibers]] |flower = [[Category:Flowers]] |fuel = [[Category:Fuels]] |furniture = [[Category:Furniture]]{{#switch:{{lc:{{{category|}}}}} |chair = [[Category:Chairs]] |couch|sofa|bench = [[Category:Couches]] |end table = [[Category:End tables]] |lamp|lighting = [[Category:Lighting]] |misc|miscellaneous = [[Category:Miscellaneous furniture]] |painting|wall decal = [[Category:Wall artwork]] |path|pathway = [[Category:Pathways]] |rug = [[Category:Rugs]] |stool = [[Category:Stools]] |table|dining table = [[Category:Tables]] }} |gem =[[Category:Gems]] |medicine =[[Category:Medicine]] |microbe =[[Category:Microbes]] |resource =[[Category:Resources]] |tool = [[Category:Tools]] |trash = [[Category:Trash]] |workbench = [[Category:Workbench items]]<!-- End category setting-->}}<!-- End ifeq -->}}</includeonly><noinclude>{{documentation}} {{#cargo_attach:table=Items}} {{Items restoration/Cargo attach}}<!-- Transcluded template that attached table=Items_restoration--> [[Category:Infobox templates]]</noinclude> e1fdedbd822fb60e05231943cf75974f985cc5c2 File:Wood path.png 6 1787 2029 2024-05-30T00:43:37Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Wires panel.png 6 1788 2030 2024-05-30T00:43:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:White path light.png 6 1789 2031 2024-05-30T00:43:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vintage path.png 6 1790 2032 2024-05-30T00:43:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Vent panel.png 6 1791 2033 2024-05-30T00:43:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Technical screen panel.png 6 1792 2034 2024-05-30T00:43:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Technical banner.png 6 1793 2035 2024-05-30T00:43:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Superhero path.png 6 1794 2036 2024-05-30T00:43:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Solid pink curtain.png 6 1795 2037 2024-05-30T00:44:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Cuddles couch.png 6 1796 2038 2024-05-30T00:44:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Cuddles bench.png 6 1797 2039 2024-05-30T00:44:45Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Common block.png 6 1798 2040 2024-05-30T00:44:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Furniture images]] f940b47bd77d606e1186ecf853e9eb0f027296f0 File:Tree planter.png 6 1799 2041 2024-05-30T00:45:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Planter.png 6 1800 2042 2024-05-30T00:45:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Stewart 0 1430 2043 1782 2024-05-30T00:47:33Z Geekette828 51691 /* Gifts */ wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren»(Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time. Stewart is a human male with short, black hair that recedes at the hairline and has a bald spot at the crown. His fringe swoops at the forehead and is accompanied by thick sideburns. He is always sporting orange safety glasses, denim blue coveralls, a white shirt, light blue gloves, and black shoes. Lastly, he has an official space alliance name badge on his left breast. Stewart's LARP outfit includes dark blue heavy armour, a horned armoured helmet, an axe and shield, and his trusty safety glasses. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Bean chili bowl,Chips,Circuit board,Coffee,Petrified wood,Starflux piece |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Carbon nano-tubes,Electro plasma,Onion |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Acorn,Alien sticker book,Bouquet of flowers |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Under Construction <!--Stewart has two schedules he follows during a normal week, this schedule is adjusted for holidays and events.--!> <!--{{Schedule |character = Stewart |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters.--!> }} ==Mail== Under Construction! <!-- Email 1 - unlocks Stewart's Glasses Email 2 - {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Observations== ==Gallery== <gallery> Stewart.png|Neutral Stewart portrait angry.png|Angry Stewart portrait confused.png|Confused Stewart portrait happy.png|Happy Stewart portrait sad.png|Sad Stewart portrait stressed.png|Stressed Stewart sprite.png|Sprite portrait crop Stewart.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} d04127eeb181ecd714bf15fdc11aa1aa21a87f12 2044 2043 2024-05-30T00:48:33Z Geekette828 51691 /* Gifts */ wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren»(Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time. Stewart is a human male with short, black hair that recedes at the hairline and has a bald spot at the crown. His fringe swoops at the forehead and is accompanied by thick sideburns. He is always sporting orange safety glasses, denim blue coveralls, a white shirt, light blue gloves, and black shoes. Lastly, he has an official space alliance name badge on his left breast. Stewart's LARP outfit includes dark blue heavy armour, a horned armoured helmet, an axe and shield, and his trusty safety glasses. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Bean chili bowl,Chips,Circuit board,Coffee,Petrified wood,Starflux piece |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Carbon nano-tubes,Electro plasma,Onion |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Acorn,Alien stickerbook,Bouquet of flowers |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Under Construction <!--Stewart has two schedules he follows during a normal week, this schedule is adjusted for holidays and events.--!> <!--{{Schedule |character = Stewart |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 10:15 |1_2_info = Arrives on the recreation deck. |1_3_time = 12:30 |1_3_info = Arrives on the plaza deck, sits on the viewing deck. |1_4_time = 16:30 |1_4_info = Leaves for the crew quarters. |1_5_time = 16:45 |1_5_info = Arrives on the crew quarters deck. |1_6_time = 17:00 |1_6_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 10:15 |2_2_info = Arrives on the recreation deck. |2_3_time = 10:30 |2_3_info = Enters the stairwell. |2_4_time = 11:30 |2_4_info = Arrives on the plaza deck. |2_5_time = 21:30 |2_5_info = Arrives on the crew quarters deck. |2_6_time = 21:45 |2_6_info = Arrives back in personal quarters.--!> }} ==Mail== Under Construction! <!-- Email 1 - unlocks Stewart's Glasses Email 2 - {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Observations== ==Gallery== <gallery> Stewart.png|Neutral Stewart portrait angry.png|Angry Stewart portrait confused.png|Confused Stewart portrait happy.png|Happy Stewart portrait sad.png|Sad Stewart portrait stressed.png|Stressed Stewart sprite.png|Sprite portrait crop Stewart.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} ab01b44c4267fb3a170e5c57ae8ac3d3729357a1 2052 2044 2024-05-30T00:52:25Z Tankarmarx 378519 Added approximation of Stewart's schedule, but needs double-checking wikitext text/x-wiki {{NPC infobox |romanceable = 0 |race = Human |birthday = Q04-13 |gender = Male |occupation = Lead Engineer |relationships = Lauren»(Sister) |location = Ship |quarters = 05 - Recreation}} '''Stewart''' is the lead engineer on the Player's ship. He spends much of his time at work in the Engine Room and is extremely serious about his work. When not on-duty, Stewart enjoys working on old radios and even LARPs with Max in his off-time. Stewart is a human male with short, black hair that recedes at the hairline and has a bald spot at the crown. His fringe swoops at the forehead and is accompanied by thick sideburns. He is always sporting orange safety glasses, denim blue coveralls, a white shirt, light blue gloves, and black shoes. Lastly, he has an official space alliance name badge on his left breast. Stewart's LARP outfit includes dark blue heavy armour, a horned armoured helmet, an axe and shield, and his trusty safety glasses. ==Gifts== Each item has a universal gift level associated with it, items specifically listed below are overrides to those universal gifts, for this specific character. {{NPC gift preferences |love = Bean chili bowl,Chips,Circuit board,Coffee,Petrified wood,Starflux piece |loveGroups = [[:Category:Item universally loved|Universally Loved Items]] |like = Carbon nano-tubes,Electro plasma,Onion |likeGroups = [[:Category:Item universally liked|Universally Liked Items]] |neutral = |neutralGroups = [[:Category:Item universally neutral|Universally Neutral Items]] |dislike = Acorn,Alien stickerbook,Bouquet of flowers |dislikeGroups = [[:Category:Item universally disliked|Universally Disliked Items]] }} ===Gifts for the Player=== ==Schedule== Under Construction <!--Stewart has two schedules he follows during a normal week, this schedule is adjusted for holidays and events.--!> <!-- NEED TO VERIFY IN-GAME {{Schedule |character = Stewart |1_name = Regular |1_1_time = 6:00 |1_1_info = In personal quarters. |1_2_time = 6:35 |1_2_info = Arrives at the recreation deck. |1_3_time = 6:50 |1_3_info = Enters the stairwell. |1_4_time = 7:30 |1_4_info = Arrives at the Engine Room. |1_5_time = 14:45 |1_5_info = Leaves the Engine Room for the stairwell. |1_6_time = 18:15 |1_6_info = Arrives at the Cargo & Shuttle Bay. |1_7_time = 22:15 |1_7_info = Arrives at the recreation deck. |1_8_time = 22:30 |1_8_info = Arrives back in personal quarters. |2_name = Alternate |2_1_time = 6:00 |2_1_info = In personal quarters. |2_2_time = 8:40 |2_2_info = Arrives on the recreation deck. |2_3_time = 8:50 |2_3_info = Arrives at the Engine Room. |2_4_time = 13:00 |2_4_info = Enters the stairwell. |2_5_time = 13:30 |2_5_info = Arrives on the recreation deck. |2_6_time = 19:45 |2_6_info = Arrives back in personal quarters. --!> }} ==Mail== Under Construction! <!-- Email 1 - unlocks Stewart's Glasses Email 2 - {{mail|subject= |gift= |collapse= | }} --> ==Missions== {{mission involves npc}} ==Observations== ==Gallery== <gallery> Stewart.png|Neutral Stewart portrait angry.png|Angry Stewart portrait confused.png|Confused Stewart portrait happy.png|Happy Stewart portrait sad.png|Sad Stewart portrait stressed.png|Stressed Stewart sprite.png|Sprite portrait crop Stewart.png|Cropped Portrait </gallery> <!-- ==Trivia== * ==History== *{{History|x.x|Description of change}}--> ==Navigation== {{NPC navbox|npc}} cbd0d1c19c078e184099aa415fbb1ed22896cc2d File:Blueberry growth 5.png 6 329 2045 353 2024-05-30T00:49:49Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 5.png]] to [[File:Blueberry growth 6.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 4.png 6 359 2046 383 2024-05-30T00:50:11Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 4.png]] to [[File:Blueberry growth 5.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 3.png 6 360 2047 384 2024-05-30T00:50:32Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 3.png]] to [[File:Blueberry growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 2.png 6 361 2048 385 2024-05-30T00:50:50Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 2.png]] to [[File:Blueberry growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 1.png 6 362 2049 386 2024-05-30T00:51:07Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 1.png]] to [[File:Blueberry growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 0.png 6 363 2050 387 2024-05-30T00:51:27Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 0.png]] to [[File:Blueberry growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b Blueberry seeds 0 442 2051 1996 2024-05-30T00:51:48Z Geekette828 51691 Update to growth image numeration wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 6.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 8eca0f7e71bd5dd25dbf8ce65a8e9f4ba696c905 Bean seeds 0 1801 2053 2024-05-30T01:03:43Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = |produces = Beans; Radiated beans <!-- Growth Data --> |growth = 4 |maxHarvest = 3 |cropYield = 2 }} '''Bean seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dune]]. This seed has the potential to grow into beans or radiated beans. This seed takes '''four days''' until the crop can be harvested for the first time. The player..." wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = |produces = Beans; Radiated beans <!-- Growth Data --> |growth = 4 |maxHarvest = 3 |cropYield = 2 }} '''Bean seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dune]]. This seed has the potential to grow into beans or radiated beans. This seed takes '''four days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Bean growth 0.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;|[[File:Blueberry growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 3e0ebb26131e6f0ec9b5ab35d0b3b7bfa4e9be85 2062 2053 2024-05-30T01:06:51Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = Desert Dune |produces = Beans; Radiated beans <!-- Growth Data --> |growth = 4 |maxHarvest = 3 |cropYield = 2 }} '''Bean seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dune]]. This seed has the potential to grow into beans or radiated beans. This seed takes '''four days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Bean growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} ce1c9d661de5c85e025ba73196b8ca91ecb8975b 2063 2062 2024-05-30T01:07:27Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = Desert Dune |produces = Beans; Radiated beans <!-- Growth Data --> |growth = 4 |maxHarvest = 3 |cropYield = 2 }} '''Bean seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dune]]. This seed has the potential to grow into beans or radiated beans. This seed takes '''four days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Bean growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 4.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 26c5534c37672c222d82e89b5924d1c8d2ae97cb 2064 2063 2024-05-30T01:07:38Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = Desert Dune |produces = Beans; Radiated beans <!-- Growth Data --> |growth = 4 |maxHarvest = 3 |cropYield = 2 }} '''Bean seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dune]]. This seed has the potential to grow into beans or radiated beans. This seed takes '''four days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 |- |style="vertical-align:bottom;"|[[File:Bean growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Bean growth 4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} a2f0988f05d23c7edae3bdf253dd0df53356b5ad File:Blueberry growth 0.png 6 363 2054 2050 2024-05-30T01:04:51Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 1.png]] to [[File:Blueberry growth 0.png]] without leaving a redirect: I'm dumb. wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 1.png 6 362 2055 2049 2024-05-30T01:04:59Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 2.png]] to [[File:Blueberry growth 1.png]] without leaving a redirect: I'm dumb. wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 2.png 6 361 2056 2048 2024-05-30T01:05:07Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 3.png]] to [[File:Blueberry growth 2.png]] without leaving a redirect: I'm dumb. wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 3.png 6 360 2057 2047 2024-05-30T01:05:13Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 4.png]] to [[File:Blueberry growth 3.png]]: I'm dumb. wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 4.png 6 359 2059 2046 2024-05-30T01:05:43Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 5.png]] to [[File:Blueberry growth 4.png]] without leaving a redirect: I'm dumb. wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b File:Blueberry growth 5.png 6 329 2060 2045 2024-05-30T01:05:53Z Geekette828 51691 Geekette828 moved page [[File:Blueberry growth 6.png]] to [[File:Blueberry growth 5.png]] without leaving a redirect: im dumb wikitext text/x-wiki == Licensing == {{License|game}} ff80197b64d07b05261211e62dd3fda3a667d65b Blueberry seeds 0 442 2061 2051 2024-05-30T01:06:21Z Geekette828 51691 im dumb wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Blueberries; Radiated blueberries <!-- Growth Data --> |growth = 10 |maxHarvest = 3 |cropYield = 3 }} '''Blueberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''three crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Blueberry growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 4.png|50px]] |style="vertical-align:bottom;"|[[File:Blueberry growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 8b9698fa89d9685bd33d8da99e9c04cfff422979 File:Desert Dune.png 6 1803 2065 2024-05-30T01:08:34Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Template:Agriculture navbox 10 427 2066 470 2024-05-30T01:09:36Z Geekette828 51691 wikitext text/x-wiki <includeonly>{{clear}} {| class="lkg-table tablemedium" style="margin: 3em auto;" ! Agriculture |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | seeds | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Seeds |- |{{Navbox DPL|Seeds}} |}<!-- END SEEDS BEGIN CROPS --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | crops | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Crops |- |{{Navbox DPL|Crops}} |}<!-- END CROPS END NAVBOX --> |} </includeonly><noinclude>{{documentation}} [[Category:Navbox templates]] </noinclude> 9fae16f1c1bb93e0a94d3ca06d686473dd34ae9d 2067 2066 2024-05-30T01:09:45Z Geekette828 51691 wikitext text/x-wiki <includeonly> {| class="lkg-table tablemedium" style="margin: 3em auto;" ! Agriculture |- | {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | seeds | | mw-collapsed }} tablelarge " ! class="navbox-subheader" | Seeds |- |{{Navbox DPL|Seeds}} |}<!-- END SEEDS BEGIN CROPS --> {| class="mw-collapsible {{#ifeq: {{lc:{{{1|}}}}} | crops | | mw-collapsed }} tablelarge" ! class="navbox-subheader" | Crops |- |{{Navbox DPL|Crops}} |}<!-- END CROPS END NAVBOX --> |} </includeonly><noinclude>{{documentation}} [[Category:Navbox templates]] </noinclude> 3356554b4d5825f0bab85807c80ec56017ca0dd9 Broccoli seeds 0 1804 2068 2024-05-30T01:14:19Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 9 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Broccoli; Radiated broccoli <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Broccoli seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into broccoli or radiated broccoli. This seed takes '''six days''' until the crop can be harvested, and the pla..." wikitext text/x-wiki {{Seed infobox |sellValue = 9 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Broccoli; Radiated broccoli <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Broccoli seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into broccoli or radiated broccoli. This seed takes '''six days''' until the crop can be harvested, and the player must replant this seed to harvest it again. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 |- |style="vertical-align:bottom;"|[[File:Broccoli growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Broccoli growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Broccoli growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Broccoli growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Broccoli growth 4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 7ed5d55b385b84b25d62dac1af7682172cfda9e0 File:The Grey Planet.png 6 1805 2069 2024-05-30T01:17:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Carrot seeds 0 1806 2070 2024-05-30T01:18:15Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = The Grey Planet |produces = Carrot; Radiated carrot <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Carrot seeds''' can be bought from the [[general store]] while the player's ship is docked at [[The Grey Planet]]. This seed has the potential to grow into carrots or radiated carrots. This seed takes '''four days''' until the crop can be harvested, and..." wikitext text/x-wiki {{Seed infobox |sellValue = 33 <!-- Item Data --> |itemType = Seed |planet = The Grey Planet |produces = Carrot; Radiated carrot <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Carrot seeds''' can be bought from the [[general store]] while the player's ship is docked at [[The Grey Planet]]. This seed has the potential to grow into carrots or radiated carrots. This seed takes '''four days''' until the crop can be harvested, and the player must replant these seeds after they harvest. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 |- |style="vertical-align:bottom;"|[[File:Carrot growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Carrot growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Carrot growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Carrot growth 3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} e8ef6869a1afa833c50bb3a52365a47da508f30b General store 0 414 2071 719 2024-05-30T01:23:49Z Geekette828 51691 Updated Seed Stock wikitext text/x-wiki {{Location infobox |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert }} The '''general store''' is run by Robert and carries a variety of food ingredients and gift items for the player to buy. As the player journies from planet to planet, the crop and tree seed choices will change. While the player is traveling from one planet to another, there are no seeds available for the player to purchase. ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy Milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|The Grey Planet= {{Shop/header}} {{Shop|Potato seeds|10|note=Only available when docked at The Grey Planet}} {{Shop|Corn seeds|34|note=Only available when docked at The Grey Planet}} {{Shop|Soybean seeds|20|note=Only available when docked at The Grey Planet}} {{Shop|Carrot seeds|6|note=Only available when docked at The Grey Planet}} {{Shop|Atom apple tree seeds|650|note=Only available when docked at The Grey Planet}} {{Shop/footer}} |-|Blue Reef= {{Shop/header}} {{Shop|Ginger seeds|40|note=Only available when docked at Blue Reef}} {{Shop|Lettuce seeds|8|note=Only available when docked at Blue Reef}} {{Shop|Watermelon seeds|25|note=Only available when docked at Blue Reef}} {{Shop|Cucumber seeds|20|note=Only available when docked at Blue Reef}} {{Shop|Ocean banana tree seeds|700|note=Only available when docked at Blue Reef}} {{Shop/footer}} |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop|Cherrysicle tree seeds|750|note=Only available when docked at Iceladus}} {{Shop/footer}} |-|Lava Lakes= {{Shop/header}} {{Shop|Strawberry seeds|36|note=Only available when docked at Lava Lakes}} {{Shop|Pepper seeds|28|note=Only available when docked at Lava Lakes}} {{Shop|Onion seeds|8|note=Only available when docked at Lava Lakes}} {{Shop|Pineapple seeds|30|note=Only available when docked at Lava Lakes}} {{Shop|Flaming orange tree seeds|??|note=Only available when docked at Lava Lakes}} {{Shop/footer}} </tabber> 2c5c08c67cd4303df2dcd1f0a36b192c70f5ddf6 2075 2071 2024-05-30T01:28:53Z Geekette828 51691 /* Static Inventory */ wikitext text/x-wiki {{Location infobox |locationType=Store |planet= |shipLocation=Plaza Deck (4) |hours= 9am - 5pm |closedDay=Saturday |npcs=Robert }} The '''general store''' is run by Robert and carries a variety of food ingredients and gift items for the player to buy. As the player journies from planet to planet, the crop and tree seed choices will change. While the player is traveling from one planet to another, there are no seeds available for the player to purchase. ==Inventory== ===Static Inventory=== {{Shop/header}} {{Shop|Flour|40}} {{Shop|Sugar|100}} {{Shop|Vegetable oil|60}} {{Shop|Soy milk|90}} {{Shop|Rice|90}} {{Shop|Spices|50}} {{Shop|Bread|70}} {{Shop|Bouquet of flowers|100}} {{Shop|Date invitation|500}} {{Shop|Fertilizer|25}} {{Shop|Plant material|4}} {{Shop|Battery|140}} {{Shop|Bigger space pack|500}} {{Shop|Even bigger space pack|1500|note=Only available after the first backpack upgrade has been bought}} {{Shop|Max space pack|4500|note=Only available after the "even bigger" upgrade has been bought}} {{Shop/footer}} ===Seed Inventory=== <tabber> |-|The Grey Planet= {{Shop/header}} {{Shop|Potato seeds|10|note=Only available when docked at The Grey Planet}} {{Shop|Corn seeds|34|note=Only available when docked at The Grey Planet}} {{Shop|Soybean seeds|20|note=Only available when docked at The Grey Planet}} {{Shop|Carrot seeds|6|note=Only available when docked at The Grey Planet}} {{Shop|Atom apple tree seeds|650|note=Only available when docked at The Grey Planet}} {{Shop/footer}} |-|Blue Reef= {{Shop/header}} {{Shop|Ginger seeds|40|note=Only available when docked at Blue Reef}} {{Shop|Lettuce seeds|8|note=Only available when docked at Blue Reef}} {{Shop|Watermelon seeds|25|note=Only available when docked at Blue Reef}} {{Shop|Cucumber seeds|20|note=Only available when docked at Blue Reef}} {{Shop|Ocean banana tree seeds|700|note=Only available when docked at Blue Reef}} {{Shop/footer}} |-|Desert Dune= {{Shop/header}} {{Shop|Garlic seeds|14|note=Only available when docked at Desert Dune}} {{Shop|Jute seeds|8|note=Only available when docked at Desert Dune}} {{Shop|Bean seeds|20|note=Only available when docked at Desert Dune}} {{Shop|Tomato seeds|50|note=Only available when docked at Desert Dune}} {{Shop|Cactonut tree seeds|750|note=Only available when docked at Desert Dune}} {{Shop/footer}} |-|Iceladus= {{Shop/header}} {{Shop|Cotton seeds|10|note=Only available when docked at Iceladus}} {{Shop|Squash seeds|20|note=Only available when docked at Iceladus}} {{Shop|Broccoli seeds|18|note=Only available when docked at Iceladus}} {{Shop|Blueberry seeds|46|note=Only available when docked at Iceladus}} {{Shop|Cherrysicle tree seeds|750|note=Only available when docked at Iceladus}} {{Shop/footer}} |-|Lava Lakes= {{Shop/header}} {{Shop|Strawberry seeds|36|note=Only available when docked at Lava Lakes}} {{Shop|Pepper seeds|28|note=Only available when docked at Lava Lakes}} {{Shop|Onion seeds|8|note=Only available when docked at Lava Lakes}} {{Shop|Pineapple seeds|30|note=Only available when docked at Lava Lakes}} {{Shop|Flaming orange tree seeds|??|note=Only available when docked at Lava Lakes}} {{Shop/footer}} </tabber> 8a48bd81a134f370ca40fd455a7aff8cd60ef5e7 File:Blue Reef.png 6 1807 2072 2024-05-30T01:27:39Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Lava Lakes.png 6 1808 2073 2024-05-30T01:28:17Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Utopia.png 6 1809 2074 2024-05-30T01:28:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad File:Battery.png 6 1810 2076 2024-05-30T01:30:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} 5fdc0517c60eec1aa02a1fef9763fa88c38be9ad Ginger seeds 0 1811 2077 2024-05-30T01:30:30Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 13 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Ginger; Radiated ginger <!-- Growth Data --> |growth = 10 |maxHarvest = 1 |cropYield = 31 }} '''Ginger seeds''' can be bought from the [[general store]] while the player's ship is docked at the [[Blue Reef]] planet. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvest..." wikitext text/x-wiki {{Seed infobox |sellValue = 13 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Ginger; Radiated ginger <!-- Growth Data --> |growth = 10 |maxHarvest = 1 |cropYield = 31 }} '''Ginger seeds''' can be bought from the [[general store]] while the player's ship is docked at the [[Blue Reef]] planet. This seed has the potential to grow into blueberries or radiated blueberries. This seed takes '''ten days''' until the crop can be harvested and the player must replant this seed after it has been harvested. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 |- |style="vertical-align:bottom;"|[[File:Ginger growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 507ab0ef41d4543237f3885c0dadc9b34c3fac92 2078 2077 2024-05-30T01:32:15Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 13 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Ginger; Radiated ginger <!-- Growth Data --> |growth = 10 |maxHarvest = 1 |cropYield = 31 }} '''Ginger seeds''' can be bought from the [[general store]] while the player's ship is docked at the [[Blue Reef]] planet. This seed has the potential to grow into ginger or radiated ginger. This seed takes '''ten days''' until the crop can be harvested and the player must replant this seed after it has been harvested. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 |- |style="vertical-align:bottom;"|[[File:Ginger growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Ginger growth 4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 19d1286f926e2ce7c90623f61b892c961de0b6a5 Lettuce seeds 0 1812 2079 2024-05-30T01:33:08Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 4 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Lettuce; Radiated lettuce <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Lettuce seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into lettuce or radiated lettuce. This seed takes '''four days''' until the crop can be harvested and the player..." wikitext text/x-wiki {{Seed infobox |sellValue = 4 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Lettuce; Radiated lettuce <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Lettuce seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into lettuce or radiated lettuce. This seed takes '''four days''' until the crop can be harvested and the player must replant this seed after it has been harvested. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Lettuce growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 4.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 3d1e157882a6dfd2307ca7c4668bf0c624a656ab 2096 2079 2024-05-30T01:48:47Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 4 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Lettuce; Radiated lettuce <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Lettuce seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into lettuce or radiated lettuce. This seed takes '''four days''' until the crop can be harvested and the player must replant this seed after it has been harvested. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 |- |style="vertical-align:bottom;"|[[File:Lettuce growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Lettuce growth 3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} f4f88ea1a0439f65734e49663e40daa32d3b5c9b Watermelon seeds 0 1813 2080 2024-05-30T01:38:38Z Geekette828 51691 Created page with "{{Seed infobox |sellValue = 13 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Watermelon; Radiated watermelon <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Watermelon seeds''' can be bought from the [[general store]] while the player's ship is docked at the [[Blue Reef]] planet. This seed has the potential to grow into watermelons or radiated watermelons. This seed takes '''six days''' until the crop can..." wikitext text/x-wiki {{Seed infobox |sellValue = 13 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Watermelon; Radiated watermelon <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Watermelon seeds''' can be bought from the [[general store]] while the player's ship is docked at the [[Blue Reef]] planet. This seed has the potential to grow into watermelons or radiated watermelons. This seed takes '''six days''' until the crop can be harvested and the player must replant this seed after it has been harvested. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 !!Stage 5 |- |style="vertical-align:bottom;"|[[File:Watermelon growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 4.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 82a888fd20a2ffb0204f7ab91e4d1e40803a63a8 File:Grape growth 0.png 6 1499 2081 1724 2024-05-30T01:46:27Z Geekette828 51691 Geekette828 moved page [[File:Grape growth 01.png]] to [[File:Grape growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 1.png 6 1500 2082 1725 2024-05-30T01:46:34Z Geekette828 51691 Geekette828 moved page [[File:Grape growth 02.png]] to [[File:Grape growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 2.png 6 1501 2083 1726 2024-05-30T01:46:40Z Geekette828 51691 Geekette828 moved page [[File:Grape growth 03.png]] to [[File:Grape growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 3.png 6 1502 2084 1727 2024-05-30T01:46:46Z Geekette828 51691 Geekette828 moved page [[File:Grape growth 04.png]] to [[File:Grape growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 4.png 6 1503 2085 1728 2024-05-30T01:46:54Z Geekette828 51691 Geekette828 moved page [[File:Grape growth 05.png]] to [[File:Grape growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Grape growth 5.png 6 1504 2086 1729 2024-05-30T01:47:01Z Geekette828 51691 Geekette828 moved page [[File:Grape growth 06.png]] to [[File:Grape growth 5.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 0.png 6 1505 2087 1730 2024-05-30T01:47:18Z Geekette828 51691 Geekette828 moved page [[File:Jute growth 01.png]] to [[File:Jute growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 1.png 6 1506 2088 1731 2024-05-30T01:47:25Z Geekette828 51691 Geekette828 moved page [[File:Jute growth 02.png]] to [[File:Jute growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 2.png 6 1507 2089 1732 2024-05-30T01:47:32Z Geekette828 51691 Geekette828 moved page [[File:Jute growth 03.png]] to [[File:Jute growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 3.png 6 1508 2090 1733 2024-05-30T01:47:39Z Geekette828 51691 Geekette828 moved page [[File:Jute growth 04.png]] to [[File:Jute growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Jute growth 4.png 6 1509 2091 1734 2024-05-30T01:47:47Z Geekette828 51691 Geekette828 moved page [[File:Jute growth 05.png]] to [[File:Jute growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 0.png 6 1510 2092 1735 2024-05-30T01:48:04Z Geekette828 51691 Geekette828 moved page [[File:Lettuce growth 01.png]] to [[File:Lettuce growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 1.png 6 1511 2093 1736 2024-05-30T01:48:11Z Geekette828 51691 Geekette828 moved page [[File:Lettuce growth 02.png]] to [[File:Lettuce growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 2.png 6 1512 2094 1737 2024-05-30T01:48:18Z Geekette828 51691 Geekette828 moved page [[File:Lettuce growth 03.png]] to [[File:Lettuce growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Lettuce growth 3.png 6 1513 2095 1738 2024-05-30T01:48:24Z Geekette828 51691 Geekette828 moved page [[File:Lettuce growth 04.png]] to [[File:Lettuce growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 0.png 6 1514 2097 1739 2024-05-30T01:49:12Z Geekette828 51691 Geekette828 moved page [[File:Onion growth 01.png]] to [[File:Onion growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 1.png 6 1515 2098 1740 2024-05-30T01:49:18Z Geekette828 51691 Geekette828 moved page [[File:Onion growth 02.png]] to [[File:Onion growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 2.png 6 1516 2099 1741 2024-05-30T01:49:24Z Geekette828 51691 Geekette828 moved page [[File:Onion growth 03.png]] to [[File:Onion growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Onion growth 3.png 6 1517 2100 1742 2024-05-30T01:49:31Z Geekette828 51691 Geekette828 moved page [[File:Onion growth 04.png]] to [[File:Onion growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 0.png 6 1518 2101 1743 2024-05-30T01:49:49Z Geekette828 51691 Geekette828 moved page [[File:Peanut growth 01.png]] to [[File:Peanut growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 1.png 6 1519 2102 1744 2024-05-30T01:49:55Z Geekette828 51691 Geekette828 moved page [[File:Peanut growth 02.png]] to [[File:Peanut growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 2.png 6 1402 2103 1627 2024-05-30T01:50:01Z Geekette828 51691 Geekette828 moved page [[File:Peanut growth 03.png]] to [[File:Peanut growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 3.png 6 1403 2104 1628 2024-05-30T01:50:07Z Geekette828 51691 Geekette828 moved page [[File:Peanut growth 04.png]] to [[File:Peanut growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Peanut growth 4.png 6 1404 2105 1629 2024-05-30T01:50:13Z Geekette828 51691 Geekette828 moved page [[File:Peanut growth 05.png]] to [[File:Peanut growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 0.png 6 1405 2106 1630 2024-05-30T01:50:27Z Geekette828 51691 Geekette828 moved page [[File:Pepper growth 01.png]] to [[File:Pepper growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 1.png 6 1406 2107 1631 2024-05-30T01:50:34Z Geekette828 51691 Geekette828 moved page [[File:Pepper growth 02.png]] to [[File:Pepper growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 2.png 6 1407 2108 1632 2024-05-30T01:50:39Z Geekette828 51691 Geekette828 moved page [[File:Pepper growth 03.png]] to [[File:Pepper growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 3.png 6 1408 2109 1633 2024-05-30T01:50:47Z Geekette828 51691 Geekette828 moved page [[File:Pepper growth 04.png]] to [[File:Pepper growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pepper growth 4.png 6 1409 2110 1634 2024-05-30T01:50:53Z Geekette828 51691 Geekette828 moved page [[File:Pepper growth 05.png]] to [[File:Pepper growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 0.png 6 1410 2111 1635 2024-05-30T01:51:09Z Geekette828 51691 Geekette828 moved page [[File:Pineapple growth 01.png]] to [[File:Pineapple growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 1.png 6 1411 2112 1636 2024-05-30T01:51:15Z Geekette828 51691 Geekette828 moved page [[File:Pineapple growth 02.png]] to [[File:Pineapple growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 2.png 6 1412 2113 1637 2024-05-30T01:51:21Z Geekette828 51691 Geekette828 moved page [[File:Pineapple growth 03.png]] to [[File:Pineapple growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 3.png 6 1413 2114 1638 2024-05-30T01:51:29Z Geekette828 51691 Geekette828 moved page [[File:Pineapple growth 04.png]] to [[File:Pineapple growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 4.png 6 1414 2115 1639 2024-05-30T01:51:37Z Geekette828 51691 Geekette828 moved page [[File:Pineapple growth 05.png]] to [[File:Pineapple growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pineapple growth 5.png 6 1415 2116 1640 2024-05-30T01:51:47Z Geekette828 51691 Geekette828 moved page [[File:Pineapple growth 06.png]] to [[File:Pineapple growth 5.png]] wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 0.png 6 1416 2118 1641 2024-05-30T01:52:11Z Geekette828 51691 Geekette828 moved page [[File:Potato growth 01.png]] to [[File:Potato growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 1.png 6 1417 2119 1642 2024-05-30T01:52:17Z Geekette828 51691 Geekette828 moved page [[File:Potato growth 02.png]] to [[File:Potato growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 2.png 6 1418 2120 1643 2024-05-30T01:52:27Z Geekette828 51691 Geekette828 moved page [[File:Potato growth 03.png]] to [[File:Potato growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Potato growth 3.png 6 1419 2121 1644 2024-05-30T01:52:33Z Geekette828 51691 Geekette828 moved page [[File:Potato growth 04.png]] to [[File:Potato growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 0.png 6 1420 2122 1645 2024-05-30T01:52:55Z Geekette828 51691 Geekette828 moved page [[File:Pumpkin growth 01.png]] to [[File:Pumpkin growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 1.png 6 1421 2123 1646 2024-05-30T01:53:01Z Geekette828 51691 Geekette828 moved page [[File:Pumpkin growth 02.png]] to [[File:Pumpkin growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 2.png 6 1422 2124 1647 2024-05-30T01:53:07Z Geekette828 51691 Geekette828 moved page [[File:Pumpkin growth 03.png]] to [[File:Pumpkin growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 3.png 6 1423 2125 1648 2024-05-30T01:53:13Z Geekette828 51691 Geekette828 moved page [[File:Pumpkin growth 04.png]] to [[File:Pumpkin growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Pumpkin growth 4.png 6 1424 2126 1649 2024-05-30T01:53:20Z Geekette828 51691 Geekette828 moved page [[File:Pumpkin growth 05.png]] to [[File:Pumpkin growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 0.png 6 1425 2127 1650 2024-05-30T01:53:39Z Geekette828 51691 Geekette828 moved page [[File:Soybean growth 01.png]] to [[File:Soybean growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 1.png 6 1426 2128 1651 2024-05-30T01:53:46Z Geekette828 51691 Geekette828 moved page [[File:Soybean growth 02.png]] to [[File:Soybean growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 2.png 6 1427 2129 1652 2024-05-30T01:53:51Z Geekette828 51691 Geekette828 moved page [[File:Soybean growth 03.png]] to [[File:Soybean growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 3.png 6 1428 2130 1653 2024-05-30T01:53:59Z Geekette828 51691 Geekette828 moved page [[File:Soybean growth 04.png]] to [[File:Soybean growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Soybean growth 4.png 6 1429 2131 1654 2024-05-30T01:54:06Z Geekette828 51691 Geekette828 moved page [[File:Soybean growth 05.png]] to [[File:Soybean growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 0.png 6 1431 2132 1656 2024-05-30T01:54:27Z Geekette828 51691 Geekette828 moved page [[File:Spinach growth 01.png]] to [[File:Spinach growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 1.png 6 1432 2133 1657 2024-05-30T01:54:32Z Geekette828 51691 Geekette828 moved page [[File:Spinach growth 02.png]] to [[File:Spinach growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 2.png 6 1433 2134 1658 2024-05-30T01:54:38Z Geekette828 51691 Geekette828 moved page [[File:Spinach growth 03.png]] to [[File:Spinach growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Spinach growth 3.png 6 1434 2135 1659 2024-05-30T01:54:44Z Geekette828 51691 Geekette828 moved page [[File:Spinach growth 04.png]] to [[File:Spinach growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 0.png 6 1435 2136 1660 2024-05-30T01:54:57Z Geekette828 51691 Geekette828 moved page [[File:Squash growth 01.png]] to [[File:Squash growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 1.png 6 1436 2137 1661 2024-05-30T01:55:02Z Geekette828 51691 Geekette828 moved page [[File:Squash growth 02.png]] to [[File:Squash growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 2.png 6 1437 2138 1662 2024-05-30T01:55:09Z Geekette828 51691 Geekette828 moved page [[File:Squash growth 03.png]] to [[File:Squash growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Squash growth 3.png 6 1438 2139 1663 2024-05-30T01:55:17Z Geekette828 51691 Geekette828 moved page [[File:Squash growth 04.png]] to [[File:Squash growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 0.png 6 1439 2140 1664 2024-05-30T01:55:31Z Geekette828 51691 Geekette828 moved page [[File:Strawberry growth 01.png]] to [[File:Strawberry growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 1.png 6 1440 2141 1665 2024-05-30T01:55:37Z Geekette828 51691 Geekette828 moved page [[File:Strawberry growth 02.png]] to [[File:Strawberry growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 2.png 6 1441 2142 1666 2024-05-30T01:55:43Z Geekette828 51691 Geekette828 moved page [[File:Strawberry growth 03.png]] to [[File:Strawberry growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 3.png 6 1442 2143 1667 2024-05-30T01:55:49Z Geekette828 51691 Geekette828 moved page [[File:Strawberry growth 04.png]] to [[File:Strawberry growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Strawberry growth 4.png 6 1443 2144 1668 2024-05-30T01:55:56Z Geekette828 51691 Geekette828 moved page [[File:Strawberry growth 05.png]] to [[File:Strawberry growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 0.png 6 1444 2145 1669 2024-05-30T01:56:10Z Geekette828 51691 Geekette828 moved page [[File:Tomato growth 01.png]] to [[File:Tomato growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 1.png 6 1445 2146 1670 2024-05-30T01:56:16Z Geekette828 51691 Geekette828 moved page [[File:Tomato growth 02.png]] to [[File:Tomato growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 2.png 6 1446 2147 1671 2024-05-30T01:56:23Z Geekette828 51691 Geekette828 moved page [[File:Tomato growth 03.png]] to [[File:Tomato growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 3.png 6 1447 2148 1672 2024-05-30T01:56:28Z Geekette828 51691 Geekette828 moved page [[File:Tomato growth 04.png]] to [[File:Tomato growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Tomato growth 4.png 6 1448 2149 1673 2024-05-30T01:56:34Z Geekette828 51691 Geekette828 moved page [[File:Tomato growth 05.png]] to [[File:Tomato growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 0.png 6 1449 2150 1674 2024-05-30T01:56:50Z Geekette828 51691 Geekette828 moved page [[File:Watermelon growth 01.png]] to [[File:Watermelon growth 0.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 1.png 6 1450 2151 1675 2024-05-30T01:56:57Z Geekette828 51691 Geekette828 moved page [[File:Watermelon growth 02.png]] to [[File:Watermelon growth 1.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 2.png 6 1451 2152 1676 2024-05-30T01:57:03Z Geekette828 51691 Geekette828 moved page [[File:Watermelon growth 03.png]] to [[File:Watermelon growth 2.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 3.png 6 1452 2153 1677 2024-05-30T01:57:09Z Geekette828 51691 Geekette828 moved page [[File:Watermelon growth 04.png]] to [[File:Watermelon growth 3.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Watermelon growth 4.png 6 1453 2154 1678 2024-05-30T01:57:15Z Geekette828 51691 Geekette828 moved page [[File:Watermelon growth 05.png]] to [[File:Watermelon growth 4.png]] without leaving a redirect wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 Watermelon seeds 0 1813 2155 2080 2024-05-30T01:57:39Z Geekette828 51691 wikitext text/x-wiki {{Seed infobox |sellValue = 13 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Watermelon; Radiated watermelon <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Watermelon seeds''' can be bought from the [[general store]] while the player's ship is docked at the [[Blue Reef]] planet. This seed has the potential to grow into watermelons or radiated watermelons. This seed takes '''six days''' until the crop can be harvested and the player must replant this seed after it has been harvested. A single plant yields '''one crop''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1 !!Stage 2 !!Stage 3 !!Stage 4 |- |style="vertical-align:bottom;"|[[File:Watermelon growth 0.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 1.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 2.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 3.png|50px]] |style="vertical-align:bottom;"|[[File:Watermelon growth 4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 27ed5194765ac1e891201853663e9be157042a14 File:Cotton growth 0.png 6 308 2156 332 2024-05-30T01:59:21Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Broccoli growth 2.png 6 325 2157 349 2024-05-30T01:59:26Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Carrot growth 2.png 6 318 2158 342 2024-05-30T01:59:30Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Broccoli growth 4.png 6 323 2159 347 2024-05-30T01:59:35Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Broccoli growth 0.png 6 327 2160 351 2024-05-30T01:59:38Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Corn growth 3.png 6 311 2161 335 2024-05-30T01:59:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Bean growth 3.png 6 366 2162 390 2024-05-30T01:59:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Corn growth 4.png 6 310 2163 334 2024-05-30T01:59:51Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 3d9c33cbad410ddffa1121fe656ff9f20acd7963 File:Carrot growth 0.png 6 320 2164 344 2024-05-30T01:59:59Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Corn growth 2.png 6 312 2165 336 2024-05-30T02:00:07Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Bean growth 1.png 6 368 2166 392 2024-05-30T02:00:44Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Bean growth 2.png 6 367 2167 391 2024-05-30T02:00:48Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Bean growth 0.png 6 369 2168 393 2024-05-30T02:00:52Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Bean growth 4.png 6 365 2169 389 2024-05-30T02:00:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Ginger growth 0.png 6 289 2170 313 2024-05-30T02:00:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Garlic growth 3.png 6 292 2171 316 2024-05-30T02:01:02Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Garlic growth 0.png 6 295 2172 319 2024-05-30T02:01:05Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Garlic growth 1.png 6 294 2173 318 2024-05-30T02:01:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cotton growth 4.png 6 304 2174 328 2024-05-30T02:01:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cucumber growth 2.png 6 298 2175 322 2024-05-30T02:01:18Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cotton growth 2.png 6 306 2176 330 2024-05-30T02:01:23Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cucumber growth 1.png 6 299 2177 323 2024-05-30T02:01:42Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cotton growth 1.png 6 307 2178 331 2024-05-30T02:01:46Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Garlic growth 4.png 6 291 2179 315 2024-05-30T02:01:49Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Ginger growth 4.png 6 285 2180 309 2024-05-30T02:01:55Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cucumber growth 0.png 6 300 2181 324 2024-05-30T02:01:58Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Broccoli growth 3.png 6 324 2182 348 2024-05-30T02:02:03Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Carrot growth 1.png 6 319 2183 343 2024-05-30T02:02:06Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Broccoli growth 1.png 6 326 2184 350 2024-05-30T02:02:10Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Corn growth 0.png 6 314 2185 338 2024-05-30T02:02:13Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Carrot growth 3.png 6 317 2186 341 2024-05-30T02:02:40Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Ginger growth 3.png 6 286 2187 310 2024-05-30T02:02:43Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Ginger growth 1.png 6 288 2188 312 2024-05-30T02:02:47Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cucumber growth 3.png 6 297 2189 321 2024-05-30T02:02:50Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Ginger growth 2.png 6 287 2190 311 2024-05-30T02:02:54Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Cotton growth 3.png 6 305 2191 329 2024-05-30T02:02:57Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Garlic growth 2.png 6 293 2192 317 2024-05-30T02:03:01Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Corn growth 1.png 6 313 2193 337 2024-05-30T02:03:04Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Blueberry growth 3.png 6 360 2194 2057 2024-05-30T02:03:08Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Blueberry growth 2.png 6 361 2195 2056 2024-05-30T02:03:11Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Blueberry growth 1.png 6 362 2196 2055 2024-05-30T02:03:15Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Blueberry growth 5.png 6 329 2197 2060 2024-05-30T02:03:19Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Blueberry growth 4.png 6 359 2198 2059 2024-05-30T02:03:24Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a File:Blueberry growth 0.png 6 363 2199 2054 2024-05-30T02:03:29Z Geekette828 51691 wikitext text/x-wiki == Licensing == {{License|game}} [[Category:Plant growth stage images]] 8fa72a33895b959e13b9e56d0eee9abf4952a80a User:SwyytchBot/sandbox 2 1815 2200 2024-05-30T02:04:18Z Swyytch 490297 Test edit wikitext text/x-wiki Hello, world! 943a702d06f34599aee1f8da8ef9f7296031d699 User:Swyytch 2 1816 2201 2024-05-30T02:05:35Z Swyytch 490297 Test edit wikitext text/x-wiki Hello, world! 943a702d06f34599aee1f8da8ef9f7296031d699 User:Swyytch/Test 2 1817 2202 2024-05-30T02:07:51Z Swyytch 490297 Test edit wikitext text/x-wiki Hello, world! 943a702d06f34599aee1f8da8ef9f7296031d699 Corn seeds 0 1818 2203 2024-05-30T05:02:49Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 17 <!-- Item Data --> |itemType = Seed |planet = Grey Planet |produces = Corn;Radiated corn <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 2 }} '''Corn seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Grey Planet]]. This seed has the potential to grow into Corn,or Radiated corn. This seed takes '''six days''' until the crop can be harvested for the first time. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Corn_growth_01.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_02.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_03.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_04.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_05.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} fafc7ac42fa9e837042468b63d534527822dd265 2204 2203 2024-05-30T05:06:00Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 17 <!-- Item Data --> |itemType = Seed |planet = Grey Planet |produces = Corn;Radiated corn <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 2 }} '''Corn seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Grey Planet]]. This seed has the potential to grow into Corn,or Radiated corn. This seed takes '''six days''' until the crop can be harvested for the first time. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Corn_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 6f01ddb086382e86a467273a7929e047840ff81e Corn seeds 0 1818 2205 2204 2024-05-30T05:07:42Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 17 <!-- Item Data --> |itemType = Seed |planet = Grey Planet |produces = Corn;Radiated corn <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 2 }} '''Corn seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Grey Planet]]. This seed has the potential to grow into Corn, or Radiated corn. This seed takes '''six days''' until the crop can be harvested for the first time. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Corn_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Corn_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} d86b2c3c6b9cfdd254af70e3cf9d106b1d4b8c5d Cotton seeds 0 1819 2206 2024-05-30T05:09:18Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 5 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Cotton;Radiated cotton <!-- Growth Data --> |growth = 8 |maxHarvest = 1 |cropYield = 1 }} '''Cotton seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into Cotton, or Radiated cotton. This seed takes '''eight days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Cotton_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Cotton_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Cotton_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Cotton_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Cotton_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 2baf306884da9ac3a13abd0b83c8c7d82dbb27f4 Cucumber seeds 0 1820 2207 2024-05-30T05:09:23Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Cucumber;Radiated cucumber <!-- Growth Data --> |growth = 4 |maxHarvest = 2 |cropYield = 2 }} '''Cucumber seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Blue Reef]]. This seed has the potential to grow into Cucumber, or Radiated cucumber. This seed takes '''four days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''two times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3 |- |style="vertical-align:bottom;"|[[File:Cucumber_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Cucumber_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Cucumber_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Cucumber_growth_3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} e1c10da20771b8c6815394564f1e9f0e5a741197 Garlic seeds 0 1821 2208 2024-05-30T05:09:29Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 7 <!-- Item Data --> |itemType = Seed |planet = Desert Dunes |produces = Garlic;Radiated garlic <!-- Growth Data --> |growth = 8 |maxHarvest = 1 |cropYield = 1 }} '''Garlic seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dunes]]. This seed has the potential to grow into Garlic, or Radiated garlic. This seed takes '''eight days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Garlic_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Garlic_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Garlic_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Garlic_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Garlic_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 587dffb524bb2ced8ab0de6b4de978b11e23a13c Grape seeds 0 1822 2209 2024-05-30T05:09:34Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 23 <!-- Item Data --> |itemType = Seed |planet = Viridis |produces = Grapes;Radiated grapes <!-- Growth Data --> |growth = 10 |maxHarvest = 2 |cropYield = 2 }} '''Grape seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Viridis]]. This seed has the potential to grow into Grapes, or Radiated grapes. This seed takes '''ten days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''two times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4!!Stage 5 |- |style="vertical-align:bottom;"|[[File:Grapes_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Grapes_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Grapes_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Grapes_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Grapes_growth_4.png|50px]] |style="vertical-align:bottom;"|[[File:Grapes_growth_5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 9fe981f8f5a9d1568312e6d6e4c54c60da85e404 Jute seeds 0 1823 2210 2024-05-30T05:09:39Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 4 <!-- Item Data --> |itemType = Seed |planet = Desert Dunes |produces = Jute;Radiated jute <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Jute seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dunes]]. This seed has the potential to grow into Jute, or Radiated jute. This seed takes '''six days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Jute_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Jute_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Jute_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Jute_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Jute_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 8b4f12c11e88d52895e6f3ea685a0da27c28838c Desert mixed seeds 0 1824 2211 2024-05-30T05:09:47Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 5 <!-- Item Data --> |itemType = Seed |planet = Desert Dunes |produces = Tomato seeds;Bean seeds;Jute seeds;Garlic seeds;Tomato seeds;Bean seeds;Jute seeds;Garlic seeds <!-- Growth Data --> |growth = 0 |maxHarvest = 0 |cropYield = 0 }} '''Desert mixed seeds''' can drop from dig spots while the player is exploring the planet Desert Dunes. When planted, the seed transforms into one of the Seeds that are native to that planet. If the planter is broken, the planter will return the seed it transformed into. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 4dfb3037408b51c2376851ba0508866cf4550d1c Ice mixed seeds 0 1825 2212 2024-05-30T05:09:49Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 5 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Squash seeds;Blueberry seeds;Broccoli seeds;Cotton seeds;Squash seeds;Blueberry seeds;Broccoli seeds;Cotton seeds <!-- Growth Data --> |growth = 0 |maxHarvest = 0 |cropYield = 0 }} '''Ice mixed seeds''' can drop from dig spots while the player is exploring the planet Iceladus. When planted, the seed transforms into one of the Seeds that are native to that planet. If the planter is broken, the planter will return the seed it transformed into. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} fe499ed45721f7afad68ad9bc7daab317b3fdb49 Lava mixed seeds 0 1826 2213 2024-05-30T05:09:52Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 5 <!-- Item Data --> |itemType = Seed |planet = Lava Lakes |produces = Onion seeds;Pepper seeds;Strawberry seeds;Pineapple seeds;Onion seeds;Pepper seeds;Strawberry seeds;Pineapple seeds <!-- Growth Data --> |growth = 0 |maxHarvest = 0 |cropYield = 0 }} '''Lava mixed seeds''' can drop from dig spots while the player is exploring the planet Lava Lakes. When planted, the seed transforms into one of the Seeds that are native to that planet. If the planter is broken, the planter will return the seed it transformed into. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 502a4f2b329e81adcf8e43bab1ff8413e2248853 Ocean mixed seeds 0 1827 2214 2024-05-30T05:09:56Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 5 <!-- Item Data --> |itemType = Seed |planet = Blue Reef |produces = Cucumber seeds;Watermelon seeds;Ginger seeds;Lettuce seeds;Cucumber seeds;Watermelon seeds;Ginger seeds;Lettuce seeds <!-- Growth Data --> |growth = 0 |maxHarvest = 0 |cropYield = 0 }} '''Ocean mixed seeds''' can drop from dig spots while the player is exploring the planet Blue Reef. When planted, the seed transforms into one of the Seeds that are native to that planet. If the planter is broken, the planter will return the seed it transformed into. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 4bad567918918d15077a61e54915c756271e184b Utopia mixed seeds 0 1828 2215 2024-05-30T05:10:00Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 5 <!-- Item Data --> |itemType = Seed |planet = Viridis |produces = Grape seeds;Pumpkin seeds;Spinach seeds;Peanut seeds;Grape seeds;Pumpkin seeds;Spinach seeds;Peanut seeds <!-- Growth Data --> |growth = 0 |maxHarvest = 0 |cropYield = 0 }} '''Utopia mixed seeds''' can drop from dig spots while the player is exploring the planet Viridis. When planted, the seed transforms into one of the Seeds that are native to that planet. If the planter is broken, the planter will return the seed it transformed into. ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 2c2485525117a8a4c781871df6671e6cc959529a Onion seeds 0 1829 2216 2024-05-30T05:10:03Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 4 <!-- Item Data --> |itemType = Seed |planet = Lava Lakes |produces = Onion;Radiated onion <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Onion seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Lava Lakes]]. This seed has the potential to grow into Onion, or Radiated onion. This seed takes '''four days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3 |- |style="vertical-align:bottom;"|[[File:Onion_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Onion_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Onion_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Onion_growth_3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} e68564526f4797f821f5b18515c7a6680f260ad4 Peanut seeds 0 1830 2217 2024-05-30T05:10:05Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 9 <!-- Item Data --> |itemType = Seed |planet = Viridis |produces = Peanuts;Radiated peanuts <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 2 }} '''Peanut seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Viridis]]. This seed has the potential to grow into Peanuts, or Radiated peanuts. This seed takes '''six days''' until the crop can be harvested for the first time. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Peanuts_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Peanuts_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Peanuts_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Peanuts_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Peanuts_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 84c5268819737488c5f117d1f5b0ac16d5e0996a Pepper seeds 0 1831 2218 2024-05-30T05:10:07Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 14 <!-- Item Data --> |itemType = Seed |planet = Lava Lakes |produces = Pepper;Radiated pepper <!-- Growth Data --> |growth = 6 |maxHarvest = 2 |cropYield = 2 }} '''Pepper seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Lava Lakes]]. This seed has the potential to grow into Pepper, or Radiated pepper. This seed takes '''six days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''two times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Pepper_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Pepper_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Pepper_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Pepper_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Pepper_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 8feb9658ae5ce117d4709ca901afe35abd8805ad Pineapple seeds 0 1832 2219 2024-05-30T05:10:10Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 8 <!-- Item Data --> |itemType = Seed |planet = Lava Lakes |produces = Pineapple;Radiated pineapple <!-- Growth Data --> |growth = 10 |maxHarvest = 1 |cropYield = 1 }} '''Pineapple seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Lava Lakes]]. This seed has the potential to grow into Pineapple, or Radiated pineapple. This seed takes '''ten days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4!!Stage 5 |- |style="vertical-align:bottom;"|[[File:Pineapple_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Pineapple_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Pineapple_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Pineapple_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Pineapple_growth_4.png|50px]] |style="vertical-align:bottom;"|[[File:Pineapple_growth_5.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 8e97b954fa3af0e30ea0c85e7563a3d98558ed44 Potato seeds 0 1833 2220 2024-05-30T05:10:13Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 6 <!-- Item Data --> |itemType = Seed |planet = Grey Planet |produces = Potato;Radiated potato <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Potato seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Grey Planet]]. This seed has the potential to grow into Potato, or Radiated potato. This seed takes '''four days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3 |- |style="vertical-align:bottom;"|[[File:Potato_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Potato_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Potato_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Potato_growth_3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} a867225b5f9b3bd1e5e458637d9b008fc6040103 Pumpkin seeds 0 1834 2221 2024-05-30T05:10:16Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 15 <!-- Item Data --> |itemType = Seed |planet = Viridis |produces = Pumpkin;Radiated pumpkin <!-- Growth Data --> |growth = 6 |maxHarvest = 1 |cropYield = 1 }} '''Pumpkin seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Viridis]]. This seed has the potential to grow into Pumpkin, or Radiated pumpkin. This seed takes '''six days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Pumpkin_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Pumpkin_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Pumpkin_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Pumpkin_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Pumpkin_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} daa2f62c2d78d471ccc21b05d1333fd35efa4afd Soybean seeds 0 1835 2222 2024-05-30T05:10:18Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = Grey Planet |produces = Soybeans;Radiated soybeans <!-- Growth Data --> |growth = 5 |maxHarvest = 3 |cropYield = 2 }} '''Soybean seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Grey Planet]]. This seed has the potential to grow into Soybeans, or Radiated soybeans. This seed takes '''five days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Soybeans_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Soybeans_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Soybeans_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Soybeans_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Soybeans_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 910e069a4cea75b40e513934a6696d678a9ae872 Spinach seeds 0 1836 2223 2024-05-30T05:10:20Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 6 <!-- Item Data --> |itemType = Seed |planet = Viridis |produces = Spinach;Radiated spinach <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 1 }} '''Spinach seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Viridis]]. This seed has the potential to grow into Spinach, or Radiated spinach. This seed takes '''four days''' until the crop can be harvested for the first time. A single plant yields '''one crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3 |- |style="vertical-align:bottom;"|[[File:Spinach_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Spinach_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Spinach_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Spinach_growth_3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 9a1fe22e8816fcf324de044a61c1743be96bd2b8 Squash seeds 0 1837 2224 2024-05-30T05:10:23Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 10 <!-- Item Data --> |itemType = Seed |planet = Iceladus |produces = Squash;Radiated squash <!-- Growth Data --> |growth = 4 |maxHarvest = 1 |cropYield = 2 }} '''Squash seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Iceladus]]. This seed has the potential to grow into Squash, or Radiated squash. This seed takes '''four days''' until the crop can be harvested for the first time. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3 |- |style="vertical-align:bottom;"|[[File:Squash_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Squash_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Squash_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Squash_growth_3.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} fbab0006b6a5faa1cbfdf207b73baf8a0b9fc8d8 Strawberry seeds 0 1838 2225 2024-05-30T05:10:26Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 20 <!-- Item Data --> |itemType = Seed |planet = Lava Lakes |produces = Strawberry;Radiated strawberry <!-- Growth Data --> |growth = 8 |maxHarvest = 3 |cropYield = 2.5 }} '''Strawberry seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Lava Lakes]]. This seed has the potential to grow into Strawberry, or Radiated strawberry. This seed takes '''eight days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two and a half crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Strawberry_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Strawberry_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Strawberry_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Strawberry_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Strawberry_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} 39c0faae315dfdb5005dacff2c0d0b074ff5a3f8 Tomato seeds 0 1839 2226 2024-05-30T05:10:29Z Swyytch 490297 Automated Page Creation (SwyytchBot) wikitext text/x-wiki {{Seed infobox |sellValue = 25 <!-- Item Data --> |itemType = Seed |planet = Desert Dunes |produces = Tomato;Radiated tomato <!-- Growth Data --> |growth = 6 |maxHarvest = 3 |cropYield = 2 }} '''Tomato seeds''' can be bought from the [[general store]] while the player's ship is docked at [[Desert Dunes]]. This seed has the potential to grow into Tomato, or Radiated tomato. This seed takes '''six days''' until the crop can be harvested for the first time. The player can continue to harvest this crop up to '''three times'''. A single plant yields '''two crops''' on average. ==Growth Stages== {| class="lkg-table" !Seedling !!Stage 1!!Stage 2!!Stage 3!!Stage 4 |- |style="vertical-align:bottom;"|[[File:Tomato_growth_0.png|50px]] |style="vertical-align:bottom;"|[[File:Tomato_growth_1.png|50px]] |style="vertical-align:bottom;"|[[File:Tomato_growth_2.png|50px]] |style="vertical-align:bottom;"|[[File:Tomato_growth_3.png|50px]] |style="vertical-align:bottom;"|[[File:Tomato_growth_4.png|50px]] |} ==Sources== ===Purchased=== {{purchased at}} ===Crafted=== {{Recipe/none}} ===Dropped=== {{item as drop}} ===Gifted=== *No NPC currently gives the player this item. ===Mission Reward=== {{item as quest reward}} ==Uses== ===Gifting=== {{gifted item |love = |like = |neutral = universal |dislike = }} ===Recipes=== {{item as ingredient}} ===Missions=== {{item required for quest}} <!--==Gallery== <gallery> imagename.png|imagedescription </gallery> ==Trivia== * ==History== *{{history|x.x|description of change}} --> ==Navigation== {{Agriculture navbox|seeds}} c46c90e62d4bad3ff2ec4fa1e461cf3206c2ae4d